@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: #f5f5f7;
  --foreground: #0f1d33;
  --card: #ffffff;
  --card-foreground: #0f1d33;
  --primary: #0b1d3a;
  --primary-foreground: #f5f0e8;
  --secondary: #e8eaed;
  --muted: #edeef0;
  --muted-foreground: #636d7e;
  --accent: #c6973e;
  --accent-dark: #a67c2e;
  --accent-foreground: #0b1d3a;
  --border: #dde0e5;
  --gold: #c6973e;
  --gold-light: #d4b575;
  --navy: #0b1d3a;
  --navy-light: #1a3358;
  --cream: #f7f4ef;
  --radius: 0.5rem;
  --shadow-elegant: 0 10px 40px -12px rgba(11, 29, 58, 0.15);
  --shadow-gold: 0 8px 30px -8px rgba(198, 151, 62, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--foreground);
  background-color: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: rgb(60 79 108);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-elegant);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
}

.header-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
}

.header.scrolled .header-brand-name {
  color: var(--foreground);
}

.header-brand-sub {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.7);
}

.header.scrolled .header-brand-sub {
  color: var(--muted-foreground);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--primary-foreground);
  transition: color 0.2s;
}

.header.scrolled .header-nav a {
  color: #ffffff;
}

.header-nav a:hover {
  color: var(--accent);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--accent-dark));
  color: var(--accent-foreground);
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  transition: opacity 0.2s;
}

.header-cta:hover {
  opacity: 0.9;
}

.header-cta svg {
  width: 16px;
  height: 16px;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-foreground);
}

.header.scrolled .menu-toggle {
  color: #fffff;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: none;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 0 1.5rem 1.5rem;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  color: var(--foreground);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-of-type {
  border-bottom: none;
}

.mobile-nav .header-cta {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.75rem;
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  opacity: 0.82;
}

.hero-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11, 29, 58, 0.4), transparent, rgba(11, 29, 58, 0.6));
}

.hero .container {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero-content {
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(198, 151, 62, 0.4);
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--primary-foreground);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero h1 .gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.125rem;
  color: rgba(245, 240, 232, 0.8);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--accent-dark));
  color: var(--accent-foreground);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  transition: opacity 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(245, 240, 232, 0.3);
  color: var(--primary-foreground);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  transition: background 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  background: rgba(245, 240, 232, 0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 240, 232, 0.5);
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== Section shared ===== */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  margin-top: 0.75rem;
}

.section-desc {
  color: var(--muted-foreground);
  margin-top: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}

/* ===== Services ===== */
.services {
  background: var(--background);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  border-radius: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-elegant);
  border-color: rgba(198, 151, 62, 0.3);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s;
}

.service-card:hover .service-icon {
  box-shadow: var(--shadow-gold);
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent-foreground);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--muted-foreground);
  line-height: 1.6;
}

/* ===== About ===== */
.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-label {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}

.about p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--foreground);
}

.about-highlights li svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.about-stats {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 1rem;
  padding: 2.5rem;
  color: var(--primary-foreground);
  position: relative;
}

.about-stats::after {
  content: '';
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: -1rem;
  bottom: -1rem;
  background: rgba(198, 151, 62, 0.15);
  border-radius: 1rem;
  z-index: -1;
}

.stat-big {
  font-family: 'Playfair Display', serif;
  font-size: 3.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-big-label {
  color: rgba(245, 240, 232, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-box {
  background: rgba(245, 240, 232, 0.1);
  border-radius: 12px;
  padding: 1.25rem;
}

.stat-box-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-box-label {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* ===== Contact ===== */
.contact {
  background: var(--background);
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(198, 151, 62, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.contact-item-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-weight: 500;
}

.contact-item-value {
  font-weight: 500;
  color: var(--foreground);
  white-space: pre-line;
}

.contact-form {
  background: var(--card);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elegant);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: var(--muted);
  border: 1px solid var(--border);
  color: var(--foreground);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  transition: box-shadow 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(198, 151, 62, 0.25);
}

.form-group textarea {
  resize: none;
  min-height: 130px;
}

.form-group.full {
  margin-bottom: 1.5rem;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--accent-dark));
  color: var(--accent-foreground);
  padding: 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: opacity 0.2s;
  font-family: 'DM Sans', sans-serif;
}

.btn-submit:hover {
  opacity: 0.9;
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--primary-foreground);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-desc {
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.6;
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(245, 240, 232, 0.7);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 0.75rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  margin-top: 3rem;
  padding: 2rem 0;
  text-align: center;
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.875rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 1rem;
  }
}