@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --primary: #1a3a5c;
  --primary-fg: #ffffff;
  --accent: #2196F3;
  --bg: #f5f7fa;
  --card: #ffffff;
  --foreground: #1a2a3a;
  --muted: #6b7b8d;
  --border: #dde3ea;
  --dark: #141e2b;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--foreground);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Navbar */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: 1140px; margin: 0 auto; }
.site-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--primary); text-decoration: none; }
.site-logo span { color: var(--accent); }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 32px; }
.nav-menu a { text-decoration: none; font-size: 0.875rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-menu a:hover { color: var(--primary); }
.btn-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff !important; padding: 10px 20px; border-radius: 6px;
  font-weight: 600; transition: opacity 0.2s;
}
.btn-cta:hover { opacity: 0.9; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle svg { width: 24px; height: 24px; }

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(26,58,92,0.92), rgba(20,30,43,0.88));
  text-align: center; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,58,92,0.92), rgba(20,30,43,0.88)); z-index: 1; }
.hero-content { position: relative; z-index: 2; }
.hero .subtitle { color: var(--accent); font-weight: 600; font-size: 0.875rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); color: #fff; font-weight: 700; line-height: 1.1; margin-bottom: 24px; }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 640px; margin: 0 auto 40px; font-weight: 300; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 14px 32px;
  border-radius: 6px; font-weight: 600; text-decoration: none; transition: background 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; padding: 14px 32px; border-radius: 6px;
  font-weight: 600; text-decoration: none; transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.9; }

/* Services */
.services { padding: 96px 0; background: var(--bg); }
.section-label { color: var(--accent); font-weight: 600; font-size: 0.875rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px; }
.section-title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; color: var(--foreground); }
.section-header { text-align: center; margin-bottom: 64px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 960px; margin: 0 auto; }
.service-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 8px;
  padding: 32px; transition: all 0.3s;
}
.service-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); transform: translateY(-4px); }
.service-icon {
  width: 56px; height: 56px; border-radius: 6px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.service-icon svg { width: 26px; height: 26px; color: #fff; stroke: #fff; fill: none; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }

/* About */
.about { padding: 96px 0; background: var(--card); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 960px; margin: 0 auto; }
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; font-size: 0.9375rem; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.stat h3 { font-size: 2rem; color: var(--accent); font-weight: 700; }
.stat p { font-size: 0.8125rem; color: var(--muted); margin-top: 4px; }
.about-image { border-radius: 8px; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; min-height: 320px; }

/* Contact */
.contact { padding: 96px 0; background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 960px; margin: 0 auto; }
.contact-info p { color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 6px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 18px; height: 18px; color: #fff; stroke: #fff; fill: none; }
.contact-item h4 { font-family: 'Inter', sans-serif; font-size: 0.875rem; font-weight: 600; margin-bottom: 4px; }
.contact-item span { color: var(--muted); font-size: 0.875rem; }
.contact-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; border: 1px solid var(--border); border-radius: 6px;
  padding: 10px 16px; font-size: 0.875rem; font-family: 'Inter', sans-serif;
  background: var(--bg); outline: none; transition: border 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: none; height: 100px; }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border: none; padding: 12px; border-radius: 6px;
  font-weight: 600; font-size: 0.875rem; cursor: pointer; transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.9; }

/* Footer */
.site-footer { background: var(--dark); padding: 48px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.footer-links { list-style: none; display: flex; gap: 24px; }
.footer-links a { text-decoration: none; font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* Mobile */
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-menu.active {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: var(--card);
    border-top: 1px solid var(--border); padding: 24px; gap: 16px;
  }
  .menu-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
