/*
Theme Name: A-Eye Analytics
Theme URI: https://a-eyeanalytics.org
Author: A-Eye Analytics
Description: Professional Credit Control & Debt Management Training theme for A-Eye Analytics
Version: 1.0.0
License: GPL v2 or later
Text Domain: aeye-analytics
*/

/* =========================================
   CSS CUSTOM PROPERTIES
   ========================================= */
:root {
  --blue-deep:    #1E3A5F;
  --blue-mid:     #2B5F8E;
  --teal:         #1A9BA1;
  --teal-light:   #22B8BF;
  --navy:         #0F1E30;
  --offwhite:     #F5F7FA;
  --gray-light:   #E8ECF0;
  --gray-mid:     #8898AA;
  --text-dark:    #1C2B3A;
  --text-body:    #3D4F62;
  --white:        #FFFFFF;
  --gold:         #C9952A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    24px;
  --radius-pill:  100px;

  --shadow-sm:    0 2px 8px rgba(30,58,95,0.08);
  --shadow-md:    0 8px 32px rgba(30,58,95,0.14);
  --shadow-lg:    0 24px 64px rgba(30,58,95,0.18);

  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container:    1200px;
  --container-sm: 840px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* =========================================
   TYPOGRAPHY SCALE
   ========================================= */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--blue-deep);
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue-deep);
  letter-spacing: -0.015em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--blue-deep);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-body);
}

.body-md {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,155,161,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--blue-deep);
  border-color: var(--blue-mid);
}

.btn-outline-dark:hover {
  background: var(--blue-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

/* =========================================
   HEADER / NAV
   ========================================= */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

#site-header.scrolled {
  border-color: var(--gray-light);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}

.site-logo img {
  height: 52px;
  width: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.primary-nav a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.primary-nav a:hover,
.primary-nav a.active {
  background: var(--offwhite);
  color: var(--teal);
}

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-pill) !important;
}

.nav-cta:hover {
  background: var(--teal-light) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* =========================================
   HERO — HOME (REDESIGNED WITH BACKGROUND IMAGES)
   ========================================= */
.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

/* Main background image */
.hero-bg-main {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/6696150/pexels-photo-6696150.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.7) contrast(1.1);
  z-index: 1;
}

/* Gradient overlay for better text readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,30,48,0.85) 0%, rgba(30,58,95,0.7) 100%);
  z-index: 2;
}

/* Accented bottom shape */
.hero-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 3;
}

.hero-eye-orb {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.08;
  z-index: 3;
}

.hero-eye-orb svg {
  width: 100%;
  height: 100%;
  animation: slowRotate 40s linear infinite;
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 640px;
}

.hero-content .eyebrow {
  margin-bottom: 20px;
  color: var(--teal-light);
}

.hero-content .display-xl {
  color: var(--white);
  margin-bottom: 24px;
}

.hero-content .display-xl em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-content .body-lg {
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 80px;
}

.hero-stat {
  padding: 32px 0;
  border-right: 1px solid rgba(255,255,255,0.15);
  padding-right: 32px;
}

.hero-stat:last-child { border-right: none; }

.hero-stat:not(:first-child) { padding-left: 32px; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* =========================================
   SECTION: TRUSTED BY / INTRO STRIP
   ========================================= */
.intro-strip {
  background: var(--offwhite);
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-light);
}

.intro-strip p {
  font-size: 1.1rem;
  color: var(--blue-mid);
  font-weight: 500;
  text-align: center;
  font-style: italic;
}

/* =========================================
   SECTION: VALUE PROPS (HOME)
   ========================================= */
.value-props {
  background: var(--white);
}

.section-header {
  margin-bottom: 64px;
}

.section-header .eyebrow {
  margin-bottom: 12px;
}

.section-header .display-lg {
  margin-bottom: 16px;
}

.section-header .body-lg {
  max-width: 600px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .body-lg {
  margin: 0 auto;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--blue-mid));
  opacity: 0;
  transition: var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(26,155,161,0.2);
}

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

.value-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(26,155,161,0.12), rgba(43,95,142,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal);
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* =========================================
   SECTION: SPLIT CONTENT
   ========================================= */
.split-section {
  background: var(--white);
}

.split-section.alt-bg {
  background: var(--offwhite);
}

.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
}

.split-image-badge .stat-number {
  font-size: 1.8rem;
  color: var(--teal);
}

.split-image-badge .stat-label {
  font-size: 0.78rem;
  color: var(--text-body);
}

.split-content .eyebrow {
  margin-bottom: 12px;
}

.split-content .display-lg {
  margin-bottom: 20px;
}

.split-content .body-md {
  margin-bottom: 16px;
}

.split-content .btn {
  margin-top: 16px;
}

.check-list {
  margin: 24px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.92rem;
  color: var(--text-body);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue-mid));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: cover;
  margin-top: 2px;
}

/* =========================================
   SECTION: TESTIMONIALS
   ========================================= */
.testimonials-section {
  background: var(--blue-deep);
  color: var(--white);
}

.testimonials-section .display-lg {
  color: var(--white);
}

.testimonials-section .eyebrow {
  color: var(--teal-light);
}

.testimonials-section .body-lg {
  color: rgba(255,255,255,0.7);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(26,155,161,0.3);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars span {
  color: var(--gold);
  font-size: 1.1rem;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal-light);
}

/* =========================================
   SECTION: CTA BAND
   ========================================= */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--blue-mid) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-band .display-lg {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band .body-lg {
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}

.cta-band-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================
   HERO — INNER PAGES
   ========================================= */
.hero-inner {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}

.hero-inner-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/5380664/pexels-photo-5380664.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
}

.hero-inner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,30,48,0.9) 0%, rgba(30,58,95,0.8) 100%);
}

.hero-inner .container {
  position: relative;
  z-index: 2;
}

.hero-inner .eyebrow {
  color: var(--teal-light);
  margin-bottom: 16px;
}

.hero-inner .display-xl {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-inner .body-lg {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
}

/* =========================================
   ABOUT PAGE — FOUNDER SECTION WITH IMAGE
   ========================================= */
.about-founder {
  background: var(--white);
}

.founder-card {
  background: var(--offwhite);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.founder-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 4px;
}

.founder-title {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.founder-bio p {
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.founder-bio p:last-child { margin-bottom: 0; }

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.expertise-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  border-left: 3px solid var(--teal);
}

.expertise-item h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 6px;
}

.expertise-item p {
  font-size: 0.85rem;
  color: var(--gray-mid);
  line-height: 1.5;
}

/* =========================================
   SERVICES PAGE — ENHANCED CARDS
   ========================================= */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card-header {
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-mid));
  padding: 32px;
  color: var(--white);
}

.service-card-header .eyebrow {
  color: var(--teal-light);
  margin-bottom: 10px;
}

.service-card-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
}

.service-card-body {
  padding: 32px;
}

.service-card-body p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 24px;
  color: var(--text-body);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}

.service-feature-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.service-feature-icon::after {
  content: '✓';
  color: white;
  font-size: 10px;
  font-weight: 700;
}

/* Process steps */
.process-steps {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-light);
}

.process-step:last-child { border-bottom: none; }

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 8px;
  margin-top: 16px;
}

.step-content p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-body);
}

/* =========================================
   CONTACT PAGE — ENHANCED
   ========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: start;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 8px;
}

.contact-form-wrapper p {
  color: var(--gray-mid);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,155,161,0.12);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-mid);
}

.form-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--teal), var(--blue-mid));
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.form-submit-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,155,161,0.35);
}

.contact-info-panel {
  position: sticky;
  top: 100px;
}

.contact-info-panel h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--blue-deep);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-light);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(26,155,161,0.1), rgba(43,95,142,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.contact-info-text span {
  font-size: 0.95rem;
  color: var(--text-body);
}

/* =========================================
   FOOTER
   ========================================= */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--teal-light);
}

.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.footer-contact-item span:first-child {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-light);
  font-weight: 600;
}

.footer-contact-item span:last-child {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-panel { position: static; }
  .founder-card { grid-template-columns: 200px 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 0; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 20px 0; }
  .hero-stat:not(:first-child) { padding-left: 0; }
  .founder-card { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-step { grid-template-columns: 56px 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .contact-form-wrapper { padding: 32px 24px; }

  .primary-nav { display: none; }
  .menu-toggle { display: flex; }

  .primary-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px 32px;
    border-bottom: 1px solid var(--gray-light);
    box-shadow: var(--shadow-md);
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 480px) {
  .hero-home { padding-top: 80px; }
  .hero-content .display-xl { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; justify-content: center; }
}

/* =========================================
   ANIMATIONS
   ========================================= */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fade-in-delay-1 { transition-delay: 0.1s; }
  .fade-in-delay-2 { transition-delay: 0.2s; }
  .fade-in-delay-3 { transition-delay: 0.3s; }
}

/* Additional image styling for new sections */
.bg-pattern {
  background-image: 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='%231A9BA1' fill-opacity='0.04'%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");
}