/* OWLS Consulting — Premium Enhanced Stylesheet */
/* Dark bronze / charcoal palette inspired by reference */
/* Drop-in replacement: keeps existing class and element names intact */

:root {
  --color-primary: #14181d;
  --color-primary-dark: #0b0e12;
  --color-primary-light: #20262d;

  --color-accent: #b67636;
  --color-accent-light: #d19456;
  --color-accent-dark: #8e5724;
  --color-accent-hover: #c48343;

  --color-text-main: #f3eee7;
  --color-text-light: #d2c8bb;
  --color-text-muted: #a89c8d;

  --color-bg-body: #11151a;
  --color-bg-body-alt: #171c22;
  --color-bg-section: #1a2026;
  --color-bg-elevated: #20262d;

  --color-border: #2d3640;
  --color-border-light: #394450;

  --font-heading: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Consolas", "Monaco", "Courier New", monospace;

  --spacing-unit: 1rem;
  --spacing-xs: calc(var(--spacing-unit) * 0.375);
  --spacing-sm: calc(var(--spacing-unit) * 0.625);
  --spacing-md: calc(var(--spacing-unit) * 1.25);
  --spacing-lg: calc(var(--spacing-unit) * 2);
  --spacing-xl: calc(var(--spacing-unit) * 3);
  --spacing-2xl: calc(var(--spacing-unit) * 4);

  --border-radius: 0.5rem;
  --border-radius-lg: 0.875rem;
  --border-radius-xl: 1.25rem;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.22);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 22px 48px rgba(0, 0, 0, 0.35);
  --shadow-xl: 0 34px 64px rgba(0, 0, 0, 0.42);
  --shadow-elevation: 0 16px 38px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 28px 56px rgba(0, 0, 0, 0.38);
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-main);
  background:
    radial-gradient(circle at top left, rgba(182, 118, 54, 0.08), transparent 18%),
    linear-gradient(180deg, #11151a 0%, #151a20 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: #f5efe7;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: var(--spacing-lg);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: var(--spacing-md);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  margin-bottom: var(--spacing-sm);
}

h4 {
  font-size: 1.1rem;
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

ul,
ol {
  margin-bottom: var(--spacing-md);
}

li {
  color: var(--color-text-light);
}

a {
  color: var(--color-accent-light);
  text-decoration: none;
  transition:
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

a:hover,
a:focus {
  color: #f0b676;
  transform: translateY(-1px);
}

/* Container */
.container {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Header */
header {
  background: linear-gradient(180deg, rgba(11, 14, 18, 0.97) 0%, rgba(20, 24, 29, 0.95) 100%);
  color: #ffffff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: #f6efe5;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.logo a {
  color: inherit;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.4rem;
}

.nav-links a {
  color: #e8dccf;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-links a:hover,
.nav-links a:focus,
.nav-links a.active {
  color: #ffffff;
  background: rgba(182, 118, 54, 0.16);
  box-shadow: inset 0 0 0 1px rgba(182, 118, 54, 0.26);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.625rem;
  cursor: pointer;
  padding: 0.35rem 0.6rem;
  border-radius: var(--border-radius);
  transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

/* Hero Section */
.hero {
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 18% 18%, rgba(182, 118, 54, 0.14), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.05), transparent 20%),
    linear-gradient(135deg, #0b0e12 0%, #14181d 52%, #20262d 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 36%),
    radial-gradient(circle at 20% 80%, rgba(182, 118, 54, 0.1) 0%, transparent 38%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 110px;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 32, 38, 0.98) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1rem;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 1.15rem;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}

.hero p {
  color: #e1d6c8;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 700px;
  margin: 0 auto 2rem;
  font-weight: 400;
  line-height: 1.85;
}

.hero-buttons,
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  align-items: center;
}

/* CTA Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
  color: #ffffff;
  padding: 0.95rem 1.55rem;
  border-radius: 0.45rem;
  font-weight: 700;
  font-size: 0.96rem;
  transition: all 0.28s ease;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.cta-button:hover,
.cta-button:focus {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
  background: #222931;
  color: #f3eee7;
  border-color: rgba(182, 118, 54, 0.22);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary:hover,
.cta-button.secondary:focus {
  color: #ffffff;
  background: #2a323b;
  border-color: rgba(182, 118, 54, 0.4);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.hero .cta-button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.hero .cta-button.secondary:hover,
.hero .cta-button.secondary:focus {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.26);
}

/* Sections */
section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  position: relative;
}

section h2 {
  text-align: center;
  margin-bottom: 0.9rem;
}

section h2 + p,
section .container > p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Features */
.features {
  background: linear-gradient(180deg, #1a2026 0%, #171c22 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2rem;
}

.feature-card {
  background: linear-gradient(180deg, #20262d 0%, #1c2229 100%);
  padding: 1.65rem;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, #e0ab74 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(182, 118, 54, 0.34);
}

.feature-card h3 {
  color: #f5efe7;
  margin-bottom: 0.6rem;
}

.feature-card p {
  margin-bottom: 0;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(182, 118, 54, 0.16), rgba(255, 255, 255, 0.04));
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(182, 118, 54, 0.12);
}

/* About / Preview Sections */
.about-preview {
  background: #181d23;
}

.about-preview-content {
  max-width: 860px;
  margin: 2rem auto 0;
  background: linear-gradient(180deg, #20262d 0%, #1b2128 100%);
  border: 1px solid rgba(57, 68, 80, 0.95);
  border-radius: var(--border-radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.about-preview-content ul {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 1.6rem;
}

.about-preview-content li {
  position: relative;
  padding-left: 1.35rem;
}

.about-preview-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #f0b676);
  box-shadow: 0 0 0 4px rgba(182, 118, 54, 0.1);
}

/* Services */
.services-preview {
  background: linear-gradient(180deg, #1b2128 0%, #151a20 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  margin-top: 2rem;
}

.service-card {
  background: linear-gradient(180deg, #20262d 0%, #1c2229 100%);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(182, 118, 54, 0.92), rgba(240, 182, 118, 0.9));
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(182, 118, 54, 0.34);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
  color: #f5efe7;
}

.service-card p {
  margin-bottom: 0;
}

.services-cta {
  text-align: center;
  margin-top: 2rem;
}

/* CTA Section */
.cta-section {
  background:
    radial-gradient(circle at top center, rgba(182, 118, 54, 0.08), transparent 35%),
    linear-gradient(180deg, #14181d 0%, #11151a 100%);
}

.cta-section .container {
  text-align: center;
  max-width: 840px;
  background: linear-gradient(180deg, #20262d 0%, #1a2026 100%);
  border: 1px solid rgba(57, 68, 80, 0.92);
  border-radius: calc(var(--border-radius-xl) + 0.2rem);
  padding: clamp(1.75rem, 3vw, 3rem);
  box-shadow: var(--shadow-lg);
}

/* Footer */
footer {
  background: linear-gradient(180deg, #0b0e12 0%, #14181d 100%);
  color: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(182, 118, 54, 0.3) 50%, transparent 100%);
}

footer .footer-content,
footer .footer-bottom {
  width: min(1200px, calc(100% - 2.5rem));
  margin-left: auto;
  margin-right: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.footer-section h3 {
  color: #ffffff;
  margin-bottom: 0.85rem;
  font-size: 1.12rem;
  letter-spacing: 0.015em;
}

.footer-section p,
.footer-section li,
.footer-section a {
  color: #d7ccbf;
}

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

.footer-section ul li {
  margin-bottom: 0.55rem;
}

.footer-section ul li a {
  padding: var(--spacing-xs) 0;
  display: inline-block;
  position: relative;
}

.footer-section ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: width 0.22s ease;
}

.footer-section ul li a:hover {
  color: #f0b676;
  padding-left: 0.75rem;
}

.footer-section ul li a:hover::before {
  width: 6px;
}

.footer-bottom {
  margin-top: 2.4rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.015em;
}

.footer-bottom p {
  color: #c2b7a8;
  margin-bottom: 0;
}

/* Generic Form Styling */
form {
  width: 100%;
}

.form-group {
  margin-bottom: 1.15rem;
}

label {
  display: inline-block;
  font-weight: 700;
  color: #f3eee7;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

input,
select,
textarea,
button {
  font: inherit;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="file"],
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  background: #181d23;
  color: #f3eee7;
  border-radius: 0.9rem;
  padding: 0.95rem 1rem;
  outline: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    transform 0.22s ease;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

input::placeholder,
textarea::placeholder {
  color: var(--color-text-muted);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(182, 118, 54, 0.5);
  box-shadow: 0 0 0 4px rgba(182, 118, 54, 0.14);
  background-color: #1d232a;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

/* SCORM Upload Page */
.scorm-upload-page {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background:
    radial-gradient(rgba(182, 118, 54, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #161b21 0%, #11151a 100%);
  background-size: 22px 22px, auto;
}

.scorm-upload-page h2 {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
  padding-bottom: 1rem;
}

.scorm-upload-page h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, #f0b676 100%);
  border-radius: 999px;
}

.scorm-upload-container {
  max-width: 760px;
  margin: 0 auto;
  background: linear-gradient(180deg, #20262d 0%, #1b2128 100%);
  padding: clamp(1.35rem, 3vw, 2.4rem);
  border-radius: calc(var(--border-radius-xl) + 0.15rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.scorm-upload-container:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.scorm-file-input {
  border: 2px dashed rgba(182, 118, 54, 0.26);
  padding: clamp(1.25rem, 4vw, 2.25rem);
  text-align: center;
  border-radius: var(--border-radius-xl);
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  background: linear-gradient(180deg, #181d23 0%, #1d232a 100%);
  cursor: pointer;
}

.scorm-file-input:hover,
.scorm-file-input:focus-within {
  border-color: var(--color-accent);
  background-color: #1d232a;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  outline: none;
}

.scorm-info {
  max-width: 760px;
  margin: 1.5rem auto 0;
  background: linear-gradient(180deg, #20262d 0%, #1c2229 100%);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-xl);
  padding: clamp(1.35rem, 3vw, 2rem);
  box-shadow: var(--shadow-md);
}

.scorm-info ul {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.scorm-info li {
  position: relative;
  padding-left: 1.35rem;
}

.scorm-info li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent), #f0b676);
}

.page-header {
  max-width: 780px;
  margin: 0 auto 2rem;
  text-align: center;
}

.page-subtitle {
  font-size: 1.06rem;
  max-width: 720px;
  margin: 0 auto;
}

.scorm-upload-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-section {
  background: linear-gradient(180deg, #20262d 0%, #1b2128 100%);
  border: 1px solid var(--color-border-light);
  border-radius: var(--border-radius-xl);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.form-section-title {
  margin-bottom: 1rem;
}

.required::after {
  content: " *";
  color: #f0b676;
}

.file-instructions,
.file-limits {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.process-steps {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.22);
}

.step-content h4 {
  margin-bottom: 0.25rem;
}

.step-content p {
  margin-bottom: 0;
}

.scorm-guidelines {
  max-width: 760px;
  margin: 1.5rem auto 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(182, 118, 54, 0.12), rgba(182, 118, 54, 0.05));
  border: 1px solid rgba(182, 118, 54, 0.22);
  border-radius: var(--border-radius-xl);
  padding: 1.5rem;
}

.guideline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
}

/* Utility Classes */
.text-accent {
  color: var(--color-accent-light);
}

.text-primary {
  color: #f5efe7;
}

.bg-gradient {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

/* Responsive */
@media (max-width: 1080px) {
  .features-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    flex-direction: column;
    padding: 0.75rem 0;
    gap: 0;
    box-shadow: var(--shadow-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    animation: slideDown 0.28s ease;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    text-align: center;
    padding: 1rem 1.25rem;
    margin: 0 0.85rem;
    border-radius: 0.8rem;
    width: auto;
    display: block;
  }

  .container,
  nav,
  footer .footer-content,
  footer .footer-bottom {
    width: min(100%, calc(100% - 1.5rem));
  }

  .hero {
    padding: 4.5rem 0 3.8rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }

  .hero-buttons .cta-button,
  .cta-buttons .cta-button {
    width: 100%;
    max-width: 340px;
  }

  .features-grid,
  .services-grid,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .about-preview-content,
  .cta-section .container,
  .scorm-upload-container,
  .scorm-info,
  .form-section,
  .scorm-guidelines {
    padding: 1.25rem;
  }

  section {
    padding: 3.8rem 0;
  }

  .cta-button {
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.18rem;
  }

  .feature-card,
  .service-card {
    padding: 1.2rem;
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-page .services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 2rem;
}

.services-page .services-list + .services-list {
  margin-top: 1.75rem;
}

.services-page .service-card {
  height: 100%;
}

.services-page > .container > .service-card {
  margin-top: 2rem;
}

/* ============================================================
   HERO LOGO — Premium Treatment
   Append these rules to the bottom of styles.css
   ============================================================ */

/* Wrapper positions logo + glow layer together */
.hero-logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.5rem;
  animation: heroLogoReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  width: 100%;
}

/* The glow orb — sits behind the image */
.hero-logo-glow {
  position: absolute;
  inset: -28px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(182, 118, 54, 0.32) 0%,
    rgba(182, 118, 54, 0.12) 45%,
    transparent 70%
  );
  filter: blur(18px);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 0;
}

/* The logo image itself */
.hero-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  border-radius: 0;
  height: auto;
  object-fit: contain;
  /* Crisp rendering */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  /* Subtle bronze drop shadow */
  filter:
    drop-shadow(0 8px 24px rgba(182, 118, 54, 0.45))
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
  /* Very slight hover lift */
  transition: filter 0.4s ease, transform 0.4s ease;
}

.hero-logo-wrap:hover .hero-logo {
  filter:
    drop-shadow(0 12px 32px rgba(182, 118, 54, 0.6))
    drop-shadow(0 4px 10px rgba(0, 0, 0, 0.55));
  transform: translateY(-4px) scale(1.02);
}

/* Accent divider between logo and H1 */
.hero-divider {
  width: 72px;
  height: 3px;
  margin: 0 auto 1.75rem;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-accent) 30%,
    #f0b676 70%,
    transparent 100%
  );
  animation: dividerReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

/* Stagger the existing hero children */
.hero-content h1 {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero-content > p {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hero-buttons {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

/* ---- Keyframes ---- */

@keyframes heroLogoReveal {
  from {
    opacity: 0;
    transform: translateY(-18px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dividerReveal {
  from {
    opacity: 0;
    width: 0;
  }
  to {
    opacity: 1;
    width: 72px;
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* Mobile: tighten logo size */
@media (max-width: 480px) {
  .hero-logo {
    width: 100%;
  }

  .hero-logo-glow {
    inset: -18px;
  }
}

@media (max-width: 768px) {
  .hero-logo-wrap {
    display: block;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 1.25rem;
  }
  width: 100%;

  .hero-logo {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
  }

  .hero-logo-glow {
    inset: 0;
    border-radius: 0;
  }
}

/* Full-bleed hero image fix */
.hero {
  padding-top: 0;
}

.hero-logo-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 1.75rem;
}

.hero-logo {
  width: 100%;
  max-width: 100%;
  display: block;
}
