/* ===== OWL SMART SOLUTIONS - Light Theme ===== */
:root {
  --owl-dark: #0f172a;
  --owl-blue: #1e293b;
  --owl-teal: #0d9488;
  --owl-teal-light: #14b8a6;
  --owl-accent: #0ea5e9;
  --owl-gold: #eab308;
  --owl-light: #f8fafc;
  --owl-white: #ffffff;
  --owl-gray-50: #f8fafc;
  --owl-gray-100: #f1f5f9;
  --owl-gray-200: #e2e8f0;
  --owl-gray-300: #cbd5e1;
  --owl-gray-400: #94a3b8;
  --owl-gray-500: #64748b;
  --owl-gray-600: #475569;
  --owl-gray-700: #334155;
  --owl-gray-800: #1e293b;
  --owl-gray-900: #0f172a;
}

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

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--owl-gray-900);
  background-color: var(--owl-white);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ===== Typography ===== */
.text-gradient-teal {
  background: linear-gradient(to right, var(--owl-teal), var(--owl-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-gold {
  background: linear-gradient(to right, #eab308, #ca8a04);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Layout ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header / Navigation ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--owl-gray-200);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--owl-gray-900);
}
.logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.logo span.teal { color: var(--owl-teal); }

/* Desktop Nav */
.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--owl-gray-500);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--owl-teal); }
.nav-links .btn-nav {
  background: var(--owl-teal);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.nav-links .btn-nav:hover { background: var(--owl-teal-light); }

/* Mobile Menu Toggle */
.menu-toggle {
  background: none;
  border: none;
  color: var(--owl-gray-600);
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle svg { width: 24px; height: 24px; }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--owl-white);
  border-bottom: 1px solid var(--owl-gray-200);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--owl-gray-600);
  border-bottom: 1px solid var(--owl-gray-100);
  transition: color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--owl-teal); }
.mobile-nav .btn-nav-mobile {
  margin-top: 0.75rem;
  background: var(--owl-teal);
  color: #fff;
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none !important; }
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-block;
  background: var(--owl-teal);
  color: #fff;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  text-align: center;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary:hover { background: var(--owl-teal-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--owl-gray-300);
  color: var(--owl-gray-700);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
  text-align: center;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
}
.btn-outline:hover { border-color: var(--owl-teal); color: var(--owl-teal); }

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--owl-gray-50) 0%, #e0f2fe 50%, var(--owl-gray-50) 100%);
}
.hero .glow-1 {
  position: absolute;
  top: 5rem;
  right: -5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(13, 148, 136, 0.06);
  border-radius: 50%;
  filter: blur(80px);
}
.hero .glow-2 {
  position: absolute;
  bottom: 2rem;
  left: -3rem;
  width: 18rem;
  height: 18rem;
  background: rgba(14, 165, 233, 0.06);
  border-radius: 50%;
  filter: blur(80px);
}
.hero-content { position: relative; z-index: 2; max-width: 600px; }
.hero-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(13, 148, 136, 0.08);
  color: var(--owl-teal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(13, 148, 136, 0.15);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--owl-gray-900);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero p {
  color: var(--owl-gray-500);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-buttons { display: flex; flex-direction: column; gap: 1rem; }

@media (min-width: 768px) {
  .hero h1 { font-size: 3.5rem; }
  .hero-buttons { flex-direction: row; }
  .hero { min-height: 85vh; }
}

/* ===== Section Styles ===== */
.section { padding: 5rem 0; }
.section-dark { background: var(--owl-gray-50); }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--owl-gray-900);
  margin-bottom: 1rem;
}
.section-subtitle {
  color: var(--owl-gray-500);
  font-size: 1rem;
  margin-bottom: 3rem;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--owl-teal);
  margin-bottom: 0.75rem;
}
.accent-bar {
  width: 3rem;
  height: 4px;
  background: var(--owl-teal);
  border-radius: 2px;
  margin-bottom: 2rem;
}

/* ===== Value Pillars ===== */
.pillars-grid {
  display: grid;
  gap: 1.5rem;
}
.pillar-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--owl-white);
  border: 1px solid var(--owl-gray-200);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pillar-card:hover {
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.pillar-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.pillar-icon svg { width: 1.5rem; height: 1.5rem; }
.pillar-icon.teal { background: rgba(13, 148, 136, 0.1); color: var(--owl-teal); }
.pillar-icon.accent { background: rgba(14, 165, 233, 0.1); color: var(--owl-accent); }
.pillar-icon.purple { background: rgba(168, 85, 247, 0.1); color: #a855f7; }
.pillar-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--owl-gray-900); margin-bottom: 0.5rem; }
.pillar-card p { color: var(--owl-gray-500); font-size: 0.9375rem; line-height: 1.6; }

@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Projects Carousel ===== */
.projects-scroll {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.projects-scroll::-webkit-scrollbar { display: none; }
.project-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--owl-gray-100);
  aspect-ratio: 4/5;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.project-card:hover img { transform: scale(1.05); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.85), transparent 60%);
}
.project-info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}
.project-info .tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.project-info .tag.teal { color: var(--owl-teal-light); }
.project-info .tag.accent { color: #38bdf8; }
.project-info .tag.purple { color: #c084fc; }
.project-info h4 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-top: 0.25rem; }

@media (min-width: 768px) {
  .project-card { flex: 0 0 320px; }
}

/* ===== Services Page ===== */
.services-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}
.services-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--owl-gray-900);
  margin-bottom: 1rem;
}
.services-hero p {
  color: var(--owl-gray-500);
  font-size: 1.125rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.services-grid { display: grid; gap: 1.5rem; }
.glass-card {
  background: var(--owl-white);
  border: 1px solid var(--owl-gray-200);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.glass-card:hover {
  border-color: rgba(13, 148, 136, 0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.glass-card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.glass-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glass-card-icon svg { width: 2rem; height: 2rem; }
.glass-card-number { color: var(--owl-gray-300); font-size: 0.75rem; font-family: monospace; }
.glass-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--owl-gray-900); margin-bottom: 0.5rem; }
.glass-card p { color: var(--owl-gray-500); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.glass-card .sub-list { display: none; border-top: 1px solid var(--owl-gray-100); padding-top: 1rem; }
.glass-card .sub-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--owl-gray-600);
  font-size: 0.875rem;
  padding: 0.25rem 0;
}
.glass-card .sub-list .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--owl-teal);
  flex-shrink: 0;
}
.glass-card .explore-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--owl-teal);
  padding: 0.5rem 1rem;
  border: 1px solid var(--owl-teal);
  border-radius: 0.5rem;
  margin-top: 0.5rem;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}
.glass-card .explore-link:hover {
  background: var(--owl-teal);
  color: #fff;
}
.glass-card.active .sub-list { display: block; }
.glass-card.active { border-color: var(--owl-teal); }

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== About Page ===== */
.about-hero {
  background: var(--owl-dark);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-hero .bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: linear-gradient(rgba(255,255,255,0.3) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 40px 40px;
}
.about-hero h1 { font-size: 2.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; position: relative; z-index: 2; }
.about-hero p { color: #94a3b8; font-size: 1.125rem; max-width: 480px; margin: 0 auto 2rem; position: relative; z-index: 2; line-height: 1.7; }
.about-hero .logo img { filter: brightness(0) invert(1); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 10;
}
.stat-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--owl-gray-200);
}
.stat-card .number { font-size: 2rem; font-weight: 700; color: var(--owl-dark); }
.stat-card .label { font-size: 0.75rem; color: var(--owl-gray-500); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500; }

.about-section { background: var(--owl-light); padding: 5rem 0; color: var(--owl-dark); }
.about-section h2 { font-size: 0.75rem; font-weight: 700; color: var(--owl-gold); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.about-section h3 { font-size: 1.75rem; font-weight: 700; color: var(--owl-dark); margin-bottom: 1rem; }
.about-section .about-text { color: var(--owl-gray-600); line-height: 1.8; margin-bottom: 2rem; }
.about-photo { border-radius: 1rem; overflow: hidden; margin-bottom: 2.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.about-photo img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }

.feature-row { display: grid; gap: 1rem; }
.feature-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid var(--owl-gray-200);
}
.feature-card .f-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: rgba(15, 23, 42, 0.05);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--owl-dark);
}
.feature-card .f-icon svg { width: 1.5rem; height: 1.5rem; }
.feature-card h4 { font-weight: 700; color: var(--owl-dark); margin-bottom: 0.25rem; }
.feature-card p { font-size: 0.875rem; color: var(--owl-gray-500); }

@media (min-width: 768px) {
  .about-hero h1 { font-size: 3.5rem; }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row { max-width: 400px; margin-left: auto; margin-right: auto; margin-top: -2.5rem; }
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--owl-dark);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner .cta-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  background: rgba(13, 148, 136, 0.15);
  border-radius: 50%;
  filter: blur(60px);
}
.cta-banner h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; position: relative; z-index: 2; }
.cta-banner p { color: #94a3b8; font-size: 0.875rem; margin-bottom: 1.5rem; position: relative; z-index: 2; }
.cta-banner .btn-white {
  display: inline-block;
  background: #fff;
  color: var(--owl-dark);
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  position: relative;
  z-index: 2;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.cta-banner .btn-white:hover { background: var(--owl-gray-200); }

.cta-section-light { background: var(--owl-gray-100); padding: 5rem 0; }

/* ===== Contact Page ===== */
.contact-page { background: var(--owl-light); color: var(--owl-dark); }
.contact-hero {
  background: var(--owl-dark);
  padding: 4rem 0;
  text-align: center;
}
.contact-hero h1 { font-size: 2.25rem; font-weight: 700; color: #fff; margin-bottom: 0.75rem; }
.contact-hero p { color: #94a3b8; font-size: 1rem; }

.contact-body { padding: 3rem 0 5rem; background: var(--owl-light); }
.quick-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--owl-gray-200);
  border-radius: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
}
.quick-link:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.quick-link:active { transform: scale(0.97); }
.quick-link .ql-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.quick-link .ql-icon.teal { background: rgba(13, 148, 136, 0.1); color: #0d9488; }
.quick-link .ql-icon.blue { background: rgba(56, 189, 248, 0.1); color: #38bdf8; }
.quick-link .ql-icon svg { width: 1.25rem; height: 1.25rem; }
.quick-link span { font-size: 0.875rem; font-weight: 600; color: var(--owl-dark); }

.contact-form-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border: 1px solid var(--owl-gray-100);
  margin-bottom: 2.5rem;
}
.contact-form-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--owl-dark); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--owl-gray-700); margin-bottom: 0.375rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--owl-gray-300);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--owl-dark);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--owl-teal);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--owl-teal);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-submit:hover { background: var(--owl-teal-light); }

.social-section { text-align: center; }
.social-section p { font-size: 0.75rem; font-weight: 500; color: var(--owl-gray-500); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 1rem; }
.social-icons { display: flex; justify-content: center; gap: 1.5rem; }
.social-icons a { color: var(--owl-dark); transition: color 0.2s; }
.social-icons a:hover { color: var(--owl-teal); }
.social-icons svg { width: 2rem; height: 2rem; }

/* ===== Footer ===== */
.site-footer {
  background: var(--owl-gray-900);
  border-top: 1px solid var(--owl-gray-800);
  padding: 3rem 0;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.site-footer .logo { color: #fff; }
.site-footer .logo img { filter: brightness(0) invert(1); }
.footer-tagline { color: var(--owl-gray-400); font-size: 0.875rem; line-height: 1.6; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--owl-gray-400); font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--owl-teal-light); }
.footer-copy { color: var(--owl-gray-500); font-size: 0.75rem; }
.footer-contact { font-size: 0.875rem; }
.footer-contact a { color: var(--owl-gray-400); transition: color 0.2s; }
.footer-contact a:hover { color: var(--owl-teal-light); }

.site-footer-light {
  background: #fff;
  border-top: 1px solid var(--owl-gray-200);
  padding: 2.5rem 0;
  text-align: center;
}
.site-footer-light p { color: var(--owl-gray-500); font-size: 0.875rem; }

/* ===== CTA Section (services) ===== */
.services-cta {
  padding: 4rem 0;
  background: var(--owl-gray-50);
  text-align: center;
}
.services-cta h2 { font-size: 1.75rem; font-weight: 700; color: var(--owl-gray-900); margin-bottom: 1rem; }
.services-cta p { color: var(--owl-gray-500); margin-bottom: 2rem; }

/* ===== Hero Split Layout (text + image) ===== */
.hero-split {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.hero-image {
  position: relative;
  z-index: 2;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

@media (min-width: 768px) {
  .hero-split {
    flex-direction: row;
    gap: 3rem;
  }
  .hero-content { flex: 1; }
  .hero-image { flex: 1; max-width: 500px; }
}

/* ===== Why Choose Us Split ===== */
.why-split {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.why-image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.why-image img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.why-content { max-width: 520px; }
.why-text {
  color: var(--owl-gray-500);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--owl-gray-700);
}
.why-list li svg {
  color: var(--owl-teal);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .why-split {
    flex-direction: row;
    gap: 4rem;
  }
  .why-image { flex: 1; }
  .why-content { flex: 1; }
}

/* ===== CTA with Background Image ===== */
.cta-image-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.cta-image-bg {
  position: absolute;
  inset: 0;
}
.cta-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.88), rgba(13,148,136,0.75));
}
.cta-image-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.cta-image-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.cta-image-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-image-content .btn-primary {
  background: #fff;
  color: var(--owl-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.cta-image-content .btn-primary:hover {
  background: var(--owl-gray-100);
}

@media (min-width: 768px) {
  .cta-image-content h2 { font-size: 2.5rem; }
}

/* ===== Responsive Overrides ===== */
@media (min-width: 768px) {
  .contact-body .container { max-width: 600px; }
  .quick-links { max-width: 400px; margin-left: auto; margin-right: auto; margin-bottom: 2.5rem; }
  .services-hero h1 { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .section { padding: 6rem 0; }
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  padding: 0.75rem 0;
  background: var(--owl-gray-50);
  border-bottom: 1px solid var(--owl-gray-200);
  font-size: 0.8125rem;
  color: var(--owl-gray-500);
}
.breadcrumb a { color: var(--owl-gray-500); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--owl-teal); }
.breadcrumb span { margin: 0 0.375rem; color: var(--owl-gray-300); }

/* ===== Service Detail Page ===== */
.service-detail { max-width: 800px; margin: 0 auto; }
.service-intro { margin-bottom: 3rem; }
.service-intro h2 { font-size: 1.75rem; font-weight: 700; color: var(--owl-gray-900); margin-bottom: 1rem; }
.service-intro p { color: var(--owl-gray-600); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }

.service-offerings { margin-bottom: 3rem; }
.service-offerings h2 { font-size: 1.5rem; font-weight: 700; color: var(--owl-gray-900); margin-bottom: 1.5rem; }

.offering-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--owl-gray-50);
  border: 1px solid var(--owl-gray-200);
  border-radius: 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.offering-card:hover { border-color: rgba(13, 148, 136, 0.3); }
.offering-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offering-icon svg { width: 1.5rem; height: 1.5rem; }
.offering-icon.teal { background: rgba(13, 148, 136, 0.1); color: var(--owl-teal); }
.offering-icon.accent { background: rgba(14, 165, 233, 0.1); color: var(--owl-accent); }
.offering-icon.purple { background: rgba(168, 85, 247, 0.1); color: #a855f7; }
.offering-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--owl-gray-900); margin-bottom: 0.5rem; }
.offering-card p { color: var(--owl-gray-600); font-size: 0.9375rem; line-height: 1.7; }

@media (max-width: 640px) {
  .offering-card { flex-direction: column; gap: 0.75rem; }
}

/* ===== Process Steps ===== */
.service-process { margin-bottom: 3rem; }
.service-process h2 { font-size: 1.5rem; font-weight: 700; color: var(--owl-gray-900); margin-bottom: 1.5rem; }
.process-steps { display: grid; gap: 1rem; }
.process-step {
  padding: 1.25rem;
  border-left: 3px solid var(--owl-teal);
  background: var(--owl-white);
  border-radius: 0 0.75rem 0.75rem 0;
  border-top: 1px solid var(--owl-gray-100);
  border-right: 1px solid var(--owl-gray-100);
  border-bottom: 1px solid var(--owl-gray-100);
}
.step-number { font-size: 0.75rem; font-family: monospace; color: var(--owl-teal); font-weight: 700; margin-bottom: 0.25rem; }
.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--owl-gray-900); margin-bottom: 0.375rem; }
.process-step p { font-size: 0.875rem; color: var(--owl-gray-600); line-height: 1.6; }

@media (min-width: 768px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}

/* ===== FAQ ===== */
.service-faq { margin-bottom: 2rem; }
.service-faq h2 { font-size: 1.5rem; font-weight: 700; color: var(--owl-gray-900); margin-bottom: 1.5rem; }
.faq-item {
  padding: 1.25rem;
  background: var(--owl-gray-50);
  border: 1px solid var(--owl-gray-200);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
}
.faq-item h3 { font-size: 1rem; font-weight: 600; color: var(--owl-gray-900); margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.9375rem; color: var(--owl-gray-600); line-height: 1.7; }
