/* ============================================
   DORCAS ADAEZE – PREMIUM PORTFOLIO STYLESHEET
   Design: Deep Navy + White + Gold
   Font: Cormorant Garamond (display) + Inter (body)
============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --navy:       #0d1b3e;
  --navy-mid:   #152850;
  --navy-light: #1e3a6e;
  --gold:       #c9a84c;
  --gold-light: #e2c068;
  --gold-pale:  #f5e9c8;
  --white:      #ffffff;
  --off-white:  #f8f9fc;
  --grey-100:   #f1f3f8;
  --grey-200:   #e2e6f0;
  --grey-400:   #9aa3b8;
  --grey-600:   #5a6480;
  --text:       #1a2340;
  --text-light: #4a5568;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 12px rgba(13,27,62,0.08);
  --shadow-md:  0 8px 32px rgba(13,27,62,0.14);
  --shadow-lg:  0 20px 60px rgba(13,27,62,0.20);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

/* ===== 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);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===== PRELOADER ===== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

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

.preloader-logo {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
  animation: pulse 1.4s ease-in-out infinite;
}

.preloader-bar {
  width: 120px; height: 2px;
  background: rgba(201,168,76,0.2);
  margin: 0 auto; border-radius: 2px; overflow: hidden;
}
.preloader-bar span {
  display: block; height: 100%;
  background: var(--gold);
  animation: loadBar 1.8s ease-in-out infinite;
}

@keyframes loadBar {
  0%   { width: 0; margin-left: 0; }
  50%  { width: 100%; margin-left: 0; }
  100% { width: 0; margin-left: 100%; }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(13, 27, 62, 0.97);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
}
.logo-initials {
  width: 40px; height: 40px;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.1rem;
  border-radius: 8px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.logo-text em { color: var(--gold); font-style: normal; }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  padding: 0.5rem 0.875rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 450;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 6px !important;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ===== CONTAINERS ===== */
.container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
}

/* ===== SECTION BASE ===== */
.section { padding: 6rem 0; }
.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-header {
  text-align: center; margin-bottom: 4rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.875rem;
  padding: 0.35rem 1rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}
.section-dark .section-title { color: var(--white); }
.section-title em { color: var(--gold); font-style: normal; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.875rem 1.875rem;
  border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}
.btn-outline {
  border: 1.5px solid rgba(201,168,76,0.6);
  color: var(--white);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.05rem; }

/* ===== AOS ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-left"] { transform: translateX(24px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(-24px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.92); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex; flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); pointer-events: none;
}
.hero-glow-1 {
  width: 500px; height: 500px;
  background: rgba(30, 58, 110, 0.6);
  top: -100px; left: -100px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: rgba(201,168,76,0.12);
  bottom: -50px; right: 10%;
}

.hero-container {
  flex: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em { color: var(--gold); font-style: normal; }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex; align-items: center; gap: 1.5rem;
}
.stat { text-align: left; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
}

/* Hero Image */
.hero-image { position: relative; }

.hero-image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,168,76,0.2);
  aspect-ratio: 4/5;
  max-height: 560px;
}
.hero-image-frame img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: top center;
}

.hero-image-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(13,27,62,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
}

.hero-floating-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: var(--shadow-md);
  animation: floatCard 4s ease-in-out infinite;
}
.hero-floating-card i { font-size: 1.25rem; }
.hero-floating-card strong { display: block; font-size: 0.85rem; color: var(--text); }
.hero-floating-card small { font-size: 0.72rem; color: var(--text-light); }

.card-1 {
  top: 8%;
  left: -5%;
  animation-delay: 0s;
}
.card-1 i { color: #22c55e; }

.card-2 {
  bottom: 15%;
  right: -5%;
  animation-delay: 2s;
}
.card-2 i { color: var(--gold); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  padding: 1.5rem;
  transition: var(--transition);
  animation: bounceDown 2.5s ease infinite;
}
.hero-scroll:hover { color: var(--gold); }
.hero-scroll i { font-size: 0.875rem; }
@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1.25rem 0;
}
.trust-bar .container {
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap; justify-content: center;
}
.trust-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.trust-items {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center;
}
.trust-items span {
  display: flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-weight: 450;
}
.trust-items i { color: var(--gold); font-size: 0.875rem; }

/* ===== ABOUT ===== */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  max-height: 500px;
}
.about-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: top center;
}

.about-experience-badge {
  position: absolute;
  bottom: -1px; right: -1px;
  background: var(--gold);
  color: var(--navy);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg) 0 0 0;
  text-align: center;
}
.exp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.exp-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-skills-list {
  margin-top: 1.5rem;
  display: flex; flex-direction: column; gap: 0.875rem;
}
.skill-item {
  display: flex; align-items: center; gap: 1rem;
}
.skill-item span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  min-width: 130px;
}
.skill-bar {
  flex: 1; height: 4px;
  background: var(--grey-200);
  border-radius: 2px; overflow: hidden;
}
.skill-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--navy-light), var(--gold));
  border-radius: 2px;
  transform-origin: left;
  animation: growBar 1.5s ease forwards;
}
@keyframes growBar { from { width: 0 !important; } }

.about-content { padding-top: 1rem; }
.about-content .section-eyebrow { margin-bottom: 0.875rem; }
.about-content .section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  text-align: left;
  margin-bottom: 1.25rem;
}
.about-lead {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.about-content p {
  color: var(--text-light);
  margin-bottom: 0.875rem;
  line-height: 1.75;
}

.about-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 2rem 0;
}
.highlight {
  display: flex; align-items: center; gap: 0.625rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.875rem; font-weight: 550;
  color: var(--text);
}
.highlight i { color: var(--gold); font-size: 0.875rem; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.3);
}
.service-card:hover::before { opacity: 1; }

.service-card--featured {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.3);
}
.service-card--featured::before { opacity: 1; }

.service-featured-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.service-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}
.service-link:hover { gap: 0.75rem; }

/* ===== WHY ===== */
.why { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.4);
}

.why-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  color: var(--text);
}
.why-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ===== PORTFOLIO ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.portfolio-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.portfolio-visual {
  padding: 1.5rem;
  background: rgba(0,0,0,0.2);
}

.portfolio-mockup {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.mockup-bar {
  background: #e8e8e8;
  padding: 0.5rem 0.75rem;
  display: flex; gap: 0.4rem;
}
.mockup-bar span {
  width: 9px; height: 9px; border-radius: 50%;
  background: #bbb;
}
.mockup-bar span:nth-child(1) { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #febc2e; }
.mockup-bar span:nth-child(3) { background: #28c840; }

.mockup-hero {
  padding: 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  min-height: 70px;
}
.mockup-logo { font-size: 1.75rem; }
.mockup-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.mockup-lines div {
  height: 8px; border-radius: 4px;
  background: rgba(255,255,255,0.35);
}
.mockup-lines div:last-child { width: 60%; }

.mockup-body {
  background: #f5f5f5;
  padding: 0.75rem;
  display: flex; gap: 0.5rem;
}
.mockup-card-sm {
  flex: 1; height: 40px;
  background: var(--white);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.portfolio-info { padding: 1.5rem; }
.portfolio-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px;
  padding: 0.2rem 0.75rem;
  margin-bottom: 0.75rem;
}
.portfolio-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.portfolio-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.portfolio-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--gold); font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.portfolio-cta:hover { gap: 0.75rem; }

.portfolio-card--cta {
  display: flex; align-items: center; justify-content: center;
  min-height: 280px;
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border-color: rgba(201,168,76,0.25);
}
.portfolio-cta-inner { text-align: center; padding: 2rem; }
.portfolio-cta-icon {
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.25rem;
  color: var(--navy);
}
.portfolio-cta-inner h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--white);
  margin-bottom: 0.625rem;
}
.portfolio-cta-inner p {
  font-size: 0.875rem; color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--off-white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card--featured {
  background: var(--navy);
  border-color: rgba(201,168,76,0.3);
}
.testimonial-card--featured p,
.testimonial-card--featured .testimonial-stars { color: rgba(255,255,255,0.9); }
.testimonial-card--featured strong { color: var(--white); }
.testimonial-card--featured small { color: rgba(255,255,255,0.55) !important; }

.testimonial-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-card p {
  font-size: 0.925rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 0.875rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700; font-size: 0.875rem;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.875rem; color: var(--text); }
.testimonial-author small { font-size: 0.75rem; color: var(--text-light); }

/* ===== PROCESS ===== */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
  position: relative;
}
.process-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.3));
  flex-shrink: 0;
  margin-top: 2.5rem;
}
.process-num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.process-icon {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.3rem;
  color: var(--gold);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.625rem;
}
.process-step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--off-white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card--featured {
  background: var(--navy);
  border-color: var(--gold);
  transform: scale(1.03);
}
.pricing-card--featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card--featured .pricing-tier,
.pricing-card--featured .pricing-price,
.pricing-card--featured .pricing-ideal { color: var(--white) !important; }
.pricing-card--featured .currency { color: var(--gold) !important; }
.pricing-card--featured .pricing-features li { color: rgba(255,255,255,0.8); }
.pricing-card--featured .pricing-features li.disabled { color: rgba(255,255,255,0.3); }
.pricing-card--featured .pricing-features i { color: var(--gold) !important; }
.pricing-card--featured .pricing-features .disabled i { color: rgba(255,255,255,0.25) !important; }

.pricing-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.3rem 1.25rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-header { margin-bottom: 2rem; }
.pricing-tier {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-bottom: 0.5rem;
}
.pricing-price {
  display: flex; align-items: flex-start;
  gap: 0.25rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.currency { font-size: 1.5rem; font-weight: 700; margin-top: 0.5rem; color: var(--navy-light); }
.amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.pricing-ideal { font-size: 0.82rem; color: var(--text-light); }

.pricing-features {
  margin-bottom: 2rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.pricing-features li {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--text);
}
.pricing-features i { color: var(--navy-light); font-size: 0.75rem; flex-shrink: 0; }
.pricing-features .disabled { color: var(--grey-400); }
.pricing-features .disabled i { color: var(--grey-400); }

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}
.pricing-note a { color: var(--navy-light); font-weight: 600; text-decoration: underline; }

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 1000px; margin: 0 auto;
}

.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(201,168,76,0.3); }

.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question i { color: var(--gold); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-question i { transform: rotate(45deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta { background: var(--navy); }

.cta-box {
  position: relative;
  text-align: center;
  padding: 5rem 2rem;
  max-width: 760px; margin: 0 auto;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-box .section-eyebrow { margin-bottom: 1rem; }
.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.cta-box h2 em { color: var(--gold); font-style: normal; }
.cta-box p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 540px; margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.cta-reassurance {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.cta-reassurance i { color: var(--gold); }

/* ===== FOOTER ===== */
.footer {
  background: #060e22;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 1.25rem 0 1.5rem;
}

.footer-socials {
  display: flex; gap: 0.625rem;
}
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}
.footer-contact i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.55); }
.footer-contact a:hover { color: var(--gold); }

.footer-cta-btn {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  padding: 0.65rem 1.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--text);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.875rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ===== BACK TO TOP ===== */
#backToTop {
  position: fixed;
  bottom: 5.5rem; right: 2rem;
  z-index: 998;
  width: 42px; height: 42px;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  color: var(--gold);
  font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}
#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: var(--navy-light); }

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--navy);
    flex-direction: column; align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.25rem;
    transition: right 0.35s ease;
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
    border-left: 1px solid rgba(201,168,76,0.15);
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; font-size: 1rem; padding: 0.75rem 1rem; }
  .nav-cta { margin-left: 0 !important; width: 100%; text-align: center; justify-content: center; }

  /* Nav hamburger animation */
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(8px); }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-wrap: wrap; justify-content: center; }
  .process-connector { display: none; }
  .process-step { flex: 0 0 calc(33.33% - 1rem); }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 3rem; padding-top: 6rem; }
  .hero-image { display: none; }
  .hero-title { font-size: clamp(2rem, 6vw, 3.25rem); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { max-width: 400px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
  .hero-container { padding: 0 1.25rem; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .about-highlights { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .process-step { flex: 0 0 calc(50% - 1rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
