/* Variables for easy branding changes */
:root {
  --primary: #0a2540;      /* Deep Navy (Trust) */
  --accent: #0070f3;       /* Action Blue (Modern IT) */
  --text: #425466;         /* Soft Slate */
  --bg: #ffffff;
  --light-gray: #f6f9fc;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
  font-family: var(--font-main);
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
}

a { text-decoration: none; color: var(--accent); transition: 0.2s; }
a:hover { opacity: 0.8; }

header {
  background: var(--bg);
  border-bottom: 1px solid #e6ebf1;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

nav ul { display: flex; list-style: none; gap: 2rem; }

nav a {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.95rem;
}

nav a.active { color: var(--accent); border-bottom: 2px solid var(--accent); }

main { padding: 4rem 5%; max-width: 1500px; margin: 0 auto; }

/* Hero Section for index.html */
.hero {
  padding: 4rem 0;
  text-align: center;
  background: radial-gradient(circle at top right, #f6f9fc, #ffffff);
}

.hero h1 {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Services Grid for list.html */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  background: white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.service-card h3 { color: var(--primary); margin-bottom: 1rem; }

.btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 1rem;
}

/* Contact Form Overrides */
form {
  background: var(--light-gray);
  padding: 2.5rem;
  border-radius: 12px;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid #dcdfe6;
  border-radius: 6px;
  font-family: inherit;
}

.site-header {
  background-color: var(--primary);
  color: white;
  padding: 4rem 5% 2rem;
  margin-top: 4rem;
}

.header-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1800px;
  margin: 0 auto;
}

.header-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.header-col p {
  font-size: 0.9rem;
  color: #aeb9c7; /* Lighter slate for better readability on dark bg */
  margin-bottom: 1rem;
}

.header-col ul {
  list-style: none;
}

.header-col ul li {
  margin-bottom: 0.5rem;
}

.header-col a {
  color: #ffffff;
  font-size: 0.9rem;
}

.header-col a:hover {
  color: var(--accent);
}

.site-footer {
  background-color: var(--primary);
  color: white;
  padding: 4rem 5% 2rem;
  margin-top: 4rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  max-width: 1500px;
  margin: 0 auto;
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.footer-col p {
  font-size: 0.9rem;
  color: #aeb9c7; /* Lighter slate for better readability on dark bg */
  margin-bottom: 1rem;
}

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

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

.footer-col a {
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-size: 0.8rem !important;
}

:root {
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Lora', serif;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: #334155;
}

h1, h2, h3, .hero h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0a2540; /* Your Navy Blue */
  letter-spacing: -0.01em;
}

/* Keep the Logo and Menu in Inter to match your brand assets */
.logo, nav a {
  font-family: var(--font-body);
  font-weight: 600;
}

/* For that bold "Logo" look in the header */
.logo {
  font-family: var(--font-main);
  font-weight: 800; 
  letter-spacing: -0.02em; /* Tighter spacing looks more "logo-like" */
}

input:focus { outline: 2px solid var(--accent); border-color: transparent; }
