/* 
  Author: Websites By Frequency
  Date: June 6, 2026
  Website: Sarah's Paintings - Original Canvas Art
  Theme: Purple & White — Cormorant Garamond / DM Sans
*/

/* ─── Fonts ───────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap");

/* ─── Design Tokens ───────────────────────────────────── */
:root {
  --purple-900: #1a0a2e;
  --purple-800: #2d1554;
  --purple-700: #3e1f78;
  --purple-600: #5e2e8e;
  --purple-500: #7b42b0;
  --purple-400: #9d6dcf;
  --purple-300: #bf9ee8;
  --purple-200: #ddc7f5;
  --purple-100: #f1e8fc;
  --purple-50: #faf5ff;

  --white: #ffffff;
  --off-white: #faf7fd;
  --text-dark: #1a0a2e;
  --text-mid: #4a3568;
  --text-soft: #7a6094;
  --border: rgba(94, 46, 142, 0.15);

  --gold: #c5a059;
  --gold-hover: #b08d4a;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 12px rgba(94, 46, 142, 0.08);
  --shadow-md: 0 12px 32px rgba(94, 46, 142, 0.14);
  --shadow-lg: 0 24px 60px rgba(94, 46, 142, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--off-white);
  color: var(--text-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.35s var(--ease);
}

ul {
  list-style: none;
}

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

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

/* ─── Layout ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6rem 0;
  position: relative;
}

/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-500) 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(94, 46, 142, 0.35);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(94, 46, 142, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--purple-600);
  border: 2px solid var(--purple-600);
}

.btn--outline:hover {
  background: var(--purple-600);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  background: var(--white);
  color: var(--purple-700);
  box-shadow: var(--shadow-sm);
}

.btn--white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ─── Section Typography ──────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--purple-800);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple-500), var(--purple-300));
  margin: 1.1rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 4rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
}

/* ─── Header / Component ──────────────────────────────── */
component-header {
  font-family: var(--font-body) !important;
  --brand-font: var(--font-display);
  --brand-color: var(--purple-800);
  --nav-font: var(--font-body);
  --nav-color: var(--text-dark);
  --nav-hover-color: var(--purple-500);
  --toolbar-bg: var(--white);
  --toolbar-color: var(--purple-800);
  --active-color: var(--purple-500);
  --mat-toolbar-container-background-color: var(--white);
  --mat-toolbar-container-text-color: var(--purple-800);
  --mdc-typography-body1-font-family: var(--font-body);
  --mdc-typography-button-font-family: var(--font-body);
  --mat-toolbar-standard-height: 72px;
  background: var(--white) !important;
}

body component-header a[class*=brand],
body component-header .brand,
body component-header [class*=logo],
body component-header h1,
body component-header h2 {
  font-family: var(--font-display) !important;
  color: var(--purple-800) !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
}

body component-header a,
body component-header button,
body component-header span[class*=nav] {
  font-family: var(--font-body) !important;
  color: var(--text-dark) !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em !important;
  transition: color 0.3s ease !important;
}

body component-header a:hover,
body component-header button:hover,
body component-header span[class*=nav]:hover {
  color: var(--purple-500) !important;
}

body component-header mat-toolbar,
body component-header [class*=toolbar],
body component-header nav {
  background-color: var(--white) !important;
  color: var(--purple-800) !important;
  font-family: var(--font-body) !important;
}

component-header .mobile-menu {
  background-color: var(--off-white) !important;
}

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, rgba(45, 21, 84, 0.97) 0%, rgba(62, 31, 120, 0.92) 60%, rgba(94, 46, 142, 0.88) 100%);
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  padding: 6rem 0 5rem;
}

/* Soft radial glow at top-right */
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(157, 109, 207, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

/* Fade to page background at bottom */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--off-white), transparent);
}

.hero .container {
  position: relative;
}

/* Split layout: text left, floating card right */
.hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 5rem;
  align-items: center;
}

/* Left side */
.hero .hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--purple-300);
  margin-bottom: 1.5rem;
}

.hero .hero-content .eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--purple-300);
}

.hero .hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}

.hero .hero-content h1 span {
  color: var(--purple-300);
  font-style: italic;
}

.hero .hero-content h2 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.4rem;
  letter-spacing: 0.01em;
}

.hero .hero-content p {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.8rem;
  max-width: 520px;
  font-weight: 300;
}

.hero .hero-content .hero-buttons {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero .hero-content .hero-buttons .btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero .hero-content .hero-buttons .btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

/* Right side — floating badge card */
.hero .hero-badge {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2.5rem;
  text-align: center;
  box-shadow: 0 30px 60px rgba(45, 21, 84, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: floating 7s ease-in-out infinite;
}

.hero .hero-badge .badge-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
}

.hero .hero-badge h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--white);
  font-style: italic;
  margin-bottom: 0.4rem;
}

.hero .hero-badge .badge-label {
  font-size: 0.75rem;
  color: var(--purple-300);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  margin-bottom: 1.8rem;
}

.hero .hero-badge hr {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 0 1.8rem;
}

.hero .hero-badge .badge-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero .hero-badge .badge-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero .hero-badge .badge-features li i {
  color: var(--purple-300);
  font-size: 0.8rem;
}

@keyframes floating {

  0%,
  100% {
    transform: translateY(0px) rotate(1deg);
  }

  50% {
    transform: translateY(-12px) rotate(-0.5deg);
  }
}

@media (max-width: 959.98px) {
  .hero {
    min-height: auto;
    text-align: center;
    padding: 5rem 0 4rem;
  }

  .hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero .hero-content .eyebrow {
    justify-content: center;
  }

  .hero .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero .hero-content .hero-buttons {
    justify-content: center;
  }

  .hero .hero-badge {
    max-width: 380px;
    margin: 0 auto;
    animation: none;
    transform: none;
  }
}

/* ─── Overview Section ────────────────────────────────── */
.overview-section {
  background: var(--off-white);
}

/* ─── Services / Gallery Teaser ───────────────────────── */
.services-section {
  background: var(--purple-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(94, 46, 142, 0.25);
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card .service-card-img {
  height: 220px;
  overflow: hidden;
}

.service-card .service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.45s var(--ease);
}

.service-card .service-card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card .service-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--purple-800);
  margin-bottom: 0.75rem;
}

.service-card .service-card-content p {
  color: var(--text-mid);
  line-height: 1.65;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card .service-card-content .service-features {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card .service-card-content .service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.service-card .service-card-content .service-features li i {
  color: var(--purple-500);
  font-size: 0.8rem;
}

.service-card .service-card-content .service-link {
  color: var(--purple-600);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  margin-top: auto;
}

.service-card .service-card-content .service-link i {
  font-size: 0.8rem;
  transition: all 0.35s var(--ease);
}

.service-card .service-card-content .service-link:hover {
  color: var(--purple-400);
}

.service-card .service-card-content .service-link:hover i {
  transform: translateX(4px);
}

/* ─── About Grid ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-images .main-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 85%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-images .sub-img {
  position: absolute;
  bottom: -2rem;
  right: 0;
  width: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 8px solid var(--off-white);
  box-shadow: var(--shadow-md);
}

.about-content .intro {
  font-size: 0.85rem;
  color: var(--purple-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 0.75rem;
  display: block;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--purple-800);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  color: var(--text-mid);
}

.about-content .about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}

.about-content .about-stats .stat-item h4 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--purple-500);
  margin-bottom: 0.25rem;
}

.about-content .about-stats .stat-item p {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 0;
}

@media (max-width: 959.98px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ─── Gallery ─────────────────────────────────────────── */
.gallery-section {
  background: var(--off-white);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-filter .filter-btn {
  padding: 0.55rem 1.5rem;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-mid);
  transition: all 0.35s var(--ease);
}

.gallery-filter .filter-btn:hover,
.gallery-filter .filter-btn.active {
  background: var(--purple-600);
  color: var(--white);
  border-color: var(--purple-600);
  box-shadow: 0 4px 14px rgba(94, 46, 142, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}

.gallery-img {
  width: "100%";
  height: "100%";
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.45s var(--ease);
}

/* Placeholder shown when no image is present */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--purple-100) 0%, var(--purple-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-400);
  font-size: 3rem;
  transition: all 0.45s var(--ease);
}

.gallery-item:hover .gallery-placeholder {
  background: linear-gradient(135deg, var(--purple-200) 0%, var(--purple-300) 100%);
  color: var(--purple-600);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 21, 84, 0.92) 0%, rgba(45, 21, 84, 0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: all 0.4s var(--ease);
}

.gallery-item .gallery-overlay h4 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
}

.gallery-item .gallery-overlay p {
  color: var(--purple-300);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
  transition-delay: 0.08s;
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* ─── Values / Story Section ──────────────────────────── */
.values-section {
  background: var(--white);
}

.story-section {
  background: var(--off-white);
}

/* ─── CTA Banner ──────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
  color: var(--white);
  text-align: center;
  padding: 5.5rem 0;
}

/* ─── Forms ───────────────────────────────────────────── */
.request-section {
  background: var(--off-white);
}

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

.request-info {
  background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-600) 100%);
  color: var(--white);
  padding: 3.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 120px;
}

.request-info h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--purple-200);
}

.request-info p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.request-info .info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.request-info .info-list .info-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.request-info .info-list .info-item .info-icon {
  color: var(--purple-300);
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.1);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.request-info .info-list .info-item h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.request-info .info-list .info-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.form-container {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.form-container h3,
.form-container h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--purple-800);
  margin-bottom: 2rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-form .form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-700);
}

.quote-form .form-group input,
.quote-form .form-group select,
.quote-form .form-group textarea {
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--off-white);
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: all 0.35s var(--ease);
}

.quote-form .form-group input:focus,
.quote-form .form-group select:focus,
.quote-form .form-group textarea:focus {
  outline: none;
  border-color: var(--purple-500);
  box-shadow: 0 0 0 4px rgba(94, 46, 142, 0.1);
}

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

.quote-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 599.98px) {
  .quote-form .form-row {
    grid-template-columns: 1fr;
  }
}

#request-form button.submit-button {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500)) !important;
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 1.05em;
}

@media (max-width: 959.98px) {
  .request-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .request-info {
    position: static;
    padding: 2rem;
    order: 2;
  }

  .form-container {
    padding: 1.5rem;
  }
}

/* ─── Testimonials ────────────────────────────────────── */
.testimonials-section {
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 100%);
  color: var(--white);
}

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

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  position: relative;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 3rem;
  color: rgba(191, 158, 232, 0.2);
  font-family: serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card .client-info .client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--purple-400);
}

.testimonial-card .client-info h5 {
  font-size: 1.05rem;
  font-weight: 600;
}

.testimonial-card .client-info p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--purple-300);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-style: normal;
}

/* ─── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--purple-900);
  color: rgba(255, 255, 255, 0.65);
  padding: 5rem 0 2rem;
  margin-top: auto;
  border-top: 4px solid var(--purple-500);
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 959.98px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 599.98px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer .footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.site-footer .footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--purple-400);
}

.site-footer .footer-col p {
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.site-footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.site-footer .footer-logo i {
  color: var(--purple-300);
}

.site-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.site-footer .footer-links a {
  font-size: 0.95rem;
}

.site-footer .footer-links a:hover {
  color: var(--purple-300);
  transform: translateX(3px);
}

.site-footer .social-links {
  display: flex;
  gap: 1rem;
}

.site-footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  transition: all 0.35s var(--ease);
}

.site-footer .social-links a:hover {
  background: var(--purple-500);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(94, 46, 142, 0.4);
}

.site-footer .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

@media (max-width: 599.98px) {
  .site-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ─── Services List ───────────────────────────────────── */
.services-list-section {
  background: var(--off-white);
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.services-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: 0 2px 6px rgba(94, 46, 142, 0.04);
  transition: all 0.35s var(--ease);
}

.services-list-item i {
  color: var(--purple-500);
  font-size: 1.2rem;
  transition: all 0.35s var(--ease);
}

.services-list-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(94, 46, 142, 0.25);
}

.services-list-item:hover i {
  transform: scale(1.15);
}

/* ─── Scroll Reveal ───────────────────────────────────── */
.reveal-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s var(--ease);
}

.reveal-fade.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .service-card:nth-child(1),
.testimonials-grid .testimonial-card:nth-child(1) {
  transition-delay: 0.1s;
}

.services-grid .service-card:nth-child(2),
.testimonials-grid .testimonial-card:nth-child(2) {
  transition-delay: 0.2s;
}

.services-grid .service-card:nth-child(3),
.testimonials-grid .testimonial-card:nth-child(3) {
  transition-delay: 0.3s;
}

.gallery-grid .gallery-item:nth-child(1) {
  transition-delay: 0.05s;
}

.gallery-grid .gallery-item:nth-child(2) {
  transition-delay: 0.10s;
}

.gallery-grid .gallery-item:nth-child(3) {
  transition-delay: 0.15s;
}

.gallery-grid .gallery-item:nth-child(4) {
  transition-delay: 0.20s;
}

.gallery-grid .gallery-item:nth-child(5) {
  transition-delay: 0.25s;
}

.gallery-grid .gallery-item:nth-child(6) {
  transition-delay: 0.30s;
}

/* ─── Request Form Component ──────────────────────────── */
request-form {
  font-family: var(--font-body);
  color: var(--purple-800);
}

request-form h5,
request-form h6 {
  font-family: var(--font-display);
  color: var(--purple-800);
}

request-form input,
request-form textarea,
request-form select {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--off-white);
  border: 1px solid var(--purple-300);
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.35s var(--ease);
}

request-form input:focus,
request-form textarea:focus,
request-form select:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--purple-400);
}

request-form .btn--primary {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
  color: var(--white);
}

request-form .btn--primary:hover {
  filter: brightness(1.1);
}

/*# sourceMappingURL=style.css.map */