@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --primary: #1a3a5c;
  --accent: #e8a020;
  --text: #2c2c2c;
  --light-bg: #f4f6f8;
  --white: #ffffff;
  --border: #e0e0e0;
}

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

body {
  font-family: 'Open Sans', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Oswald', 'Segoe UI', system-ui, sans-serif;
  letter-spacing: 0.01em;
}

/* NAV */
nav {
  background: var(--primary);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 68px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
nav .logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  text-decoration: none;
}
nav .logo img {
  height: 46px;
  width: auto;
}
nav .logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}
nav .logo-text span { color: var(--accent); }
nav ul { list-style: none; display: flex; gap: 1.5rem; }
nav ul a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--accent); }
nav .phone-nav {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.03em;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0f2540 0%, #1a3a5c 55%, #2a5a8c 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  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='%23ffffff' fill-opacity='0.03'%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");
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto 2rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--accent);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.btn-primary:hover { background: #d4901a; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.08); }

/* SECTIONS */
section { padding: 4rem 2rem; }
section.alt { background: var(--light-bg); }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.section-header p { color: #666; font-size: 1rem; margin-top: 0.75rem; }

/* SERVICE GRID */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
  border-bottom-color: var(--accent);
}
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 1.25rem; }
.service-card-body h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
}
.service-card-body p { color: #666; font-size: 0.9rem; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.why-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  border-top: 3px solid var(--accent);
}
.why-icon { font-size: 2.25rem; margin-bottom: 0.75rem; }
.why-card h3 { color: var(--primary); margin-bottom: 0.4rem; font-size: 1.05rem; }
.why-card p { color: #666; font-size: 0.875rem; }

/* CONTENT BLOCKS */
.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }
.content-block img { width: 100%; border-radius: 6px; box-shadow: 0 4px 20px rgba(0,0,0,0.14); }
.content-block h3 { color: var(--primary); font-size: 1.5rem; margin-bottom: 1rem; font-weight: 700; }
.content-block p { color: #555; margin-bottom: 1rem; }
.content-block ul { padding-left: 1.2rem; color: #555; }
.content-block ul li { margin-bottom: 0.5rem; }

/* CTA BAND */
.cta-band {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 3.5rem 2rem;
  position: relative;
}
.cta-band h2 { font-size: 2rem; margin-bottom: 0.75rem; font-weight: 700; }
.cta-band p { opacity: 0.85; margin-bottom: 1.5rem; font-size: 1.05rem; }

/* BREADCRUMB */
.breadcrumb {
  background: #0f2540;
  padding: 0.6rem 2rem;
  border-bottom: 2px solid var(--accent);
}
.breadcrumb a, .breadcrumb span { color: rgba(255,255,255,0.7); font-size: 0.85rem; text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { margin: 0 0.4rem; color: rgba(255,255,255,0.35); }
.breadcrumb .current { color: var(--accent); font-weight: 600; }

/* FOOTER */
footer {
  background: #0d1f33;
  color: rgba(255,255,255,0.7);
  padding: 3rem 2rem 1.5rem;
  border-top: 3px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}
.footer-col h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Oswald', sans-serif;
}
.footer-col p, .footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-social { margin-top: 1rem; display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-social a {
  display: inline-block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  transition: all 0.2s;
}
.footer-social a:hover { color: var(--accent); border-color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  max-width: 1100px;
  margin: 0 auto;
  color: rgba(255,255,255,0.45);
}

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.blog-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  border-left: 4px solid var(--accent);
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.12); }
.blog-card-body { padding: 1.5rem; }
.blog-card .meta {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.blog-card h3 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.1rem; }
.blog-card p { color: #666; font-size: 0.9rem; margin-bottom: 1rem; }
.blog-card a.read-more {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-card a.read-more:hover { color: var(--primary); }

.blog-post-content { max-width: 760px; margin: 0 auto; }
.blog-post-content h2 { color: var(--primary); margin: 2rem 0 0.75rem; font-size: 1.6rem; }
.blog-post-content h3 { color: var(--primary); margin: 1.5rem 0 0.5rem; font-size: 1.2rem; }
.blog-post-content p { margin-bottom: 1.2rem; color: #444; }
.blog-post-content ul, .blog-post-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; color: #444; }
.blog-post-content li { margin-bottom: 0.4rem; }

/* TRUST BAR */
.trust-bar {
  background: var(--accent);
  color: white;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 3px;
  margin-bottom: 1rem;
  font-family: 'Open Sans', inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--primary); }
.contact-form textarea { height: 120px; resize: vertical; }
.contact-form button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 3px;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}
.contact-form button:hover { background: #d4901a; }
.contact-info h3 { color: var(--primary); margin-bottom: 1.25rem; font-size: 1.3rem; }
.contact-info p, .contact-info a {
  color: #555;
  text-decoration: none;
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}
.contact-info a:hover { color: var(--accent); }
.contact-links { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}
.contact-links a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul { display: none; }
  .content-block { grid-template-columns: 1fr; }
  .content-block.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 1rem; font-size: 0.78rem; }
}
