/* Doer Ireland Public SEO Web Portal Stylesheet */
:root {
  --primary: #00D2A0;
  --primary-hover: #00B388;
  --dark-bg: #0A0F1D;
  --surface-dark: #121A2D;
  --card-bg: rgba(255, 255, 255, 0.05);
  --border-light: rgba(255, 255, 255, 0.12);
  --text-main: #FFFFFF;
  --text-muted: #94A3B8;
  --accent-gold: #FFB800;
  --radius-lg: 16px;
  --radius-sm: 8px;
  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

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

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

/* Discount Top Banner */
.promo-banner {
  background: linear-gradient(90deg, #1E293B, #0F172A);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 24px;
  text-align: center;
  font-size: 14px;
}
.promo-banner form {
  display: inline-flex;
  gap: 8px;
  margin-left: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.promo-banner input[type="email"] {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  outline: none;
}
.promo-banner button {
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--primary);
  color: #0A0F1D;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.promo-banner button:hover {
  background: var(--primary-hover);
}

/* Header & Nav */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-light);
}
.logo {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span {
  color: var(--primary);
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
nav a:hover {
  color: #fff;
}
.btn-primary {
  background: var(--primary);
  color: #0A0F1D;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  padding: 80px 24px 60px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero h1 span {
  color: var(--primary);
}
.hero p {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* Category Quick Badges */
.category-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  padding: 12px 24px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.pill:hover {
  background: var(--primary);
  color: #0A0F1D;
  border-color: var(--primary);
}

/* Section Containers */
.section {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 36px;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--surface-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}
.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}
.card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}
.card .price {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
}

/* Stats Row */
.stats-container {
  display: flex;
  justify-content: space-around;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.stat-box h2 {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary);
}
.stat-box p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--surface-dark);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.stars {
  color: var(--accent-gold);
  margin-bottom: 12px;
}
.author {
  font-weight: 700;
  margin-top: 16px;
  color: var(--primary);
}

/* Guarantees Box */
.guarantee-box {
  background: linear-gradient(135deg, rgba(0,210,160,0.1), rgba(15,23,42,0.8));
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-bottom: 80px;
}

/* Footer */
footer {
  background: #050811;
  border-top: 1px solid var(--border-light);
  padding: 60px 48px 30px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: var(--primary);
}
.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
}

@media (max-width: 768px) {
  header { padding: 16px 20px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
}
