/*
Theme Name: Rizen Solutions
Theme URI: https://rizensolutions.com/
Author: Maruf A.
Description: A custom-built, high-performance theme for Rizen Solutions.
Version: 1.0
Text Domain: rizen-solutions
*/

/* Custom CSS starts below this line */

/*
Theme Name: Rizen Solutions
Description: Professional theme for Remodelers & Dental Practices
Version: 1.0
Author: Maruf Abdullah
*/

:root {
  /* Colors from Preview */
  --primary: #0E1B33;
  --primary-light: #3B82F6;
  --accent: #F97316;
  --bg-peach: #FEF5ED;
  --text-main: #1F2937;
  --text-muted: #6B7280;
  --white: #ffffff;
  
  /* Gradients */
  --grad-blue: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  --grad-cta: linear-gradient(109.6deg, rgba(14,27,51,1) 11.2%, rgba(59,130,246,1) 91.1%);

  /* Spacing & Radii */
  --container: 1200px;
  --radius: 16px;
  --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
}

/* 1. RESET & WP BASE */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

/* Fix for WP Admin Bar */
.admin-bar .hero { margin-top: 32px; }

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* 2. LAYOUT UTILITIES */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 100px 0; }
.text-primary { color: var(--primary-light); }
.text-center { text-align: center; }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* 3. HERO SECTION */
.hero {
  background: linear-gradient(180deg, var(--bg-peach) 0%, #ffffff 100%);
  padding: 140px 0 100px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

.eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 2rem;
}

.lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* HERO CARDS (Floating effect from preview) */
.hero__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.hero-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.hero-card.offset { transform: translateY(30px); }

.hero-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.is-primary { background: #eff6ff; color: var(--primary-light); }
.is-accent { background: #fff7ed; color: var(--accent); }

/* 4. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); }

.btn-outline {
  border: 2px solid #e5e7eb;
}

/* 5. INDUSTRY CARDS */
.industry-card {
  background: var(--white);
  border: 1px solid #f3f4f6;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.industry-card__icon {
  width: 60px;
  height: 60px;
  background: var(--bg-peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

/* 6. SERVICE CARDS */
.card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid #f3f4f6;
  transition: 0.3s;
}

.card:hover { border-color: var(--primary-light); transform: translateY(-5px); }

.card__icon {
  margin-bottom: 1.5rem;
  /* Applying the Gradient Icon request from your correction ledger */
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card__icon svg {
  stroke: url(#blue-grad); /* Ensure your SVG contains a linearGradient def */
}

/* 7. PROCESS STEPS */
.process-step { position: relative; }
.process-step__num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 900;
  color: #f3f4f6;
  z-index: 0;
}

/* 8. FAQ */
.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 0;
}

summary {
  list-style: none;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

/* 9. CTA SECTION */
.cta {
  background: var(--grad-cta);
  border-radius: 32px;
  padding: 80px;
  color: var(--white);
  text-align: center;
}

.cta h2 { font-size: 3rem; margin-bottom: 2rem; max-width: 800px; margin-left: auto; margin-right: auto; }

/* Responsive Fixes */
@media (max-width: 992px) {
  .hero__grid, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
  .hero-card.offset { transform: none; }
}