@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');

:root {
  --rose-blush: #E8A0BF;
  --deep-plum: #6B2D5E;
  --soft-mauve: #C875A0;
  --cream-pearl: #FDF6F0;
  --warm-ivory: #F9EDE3;
  --dusty-rose: #D4607A;
  --champagne: #F2D9C4;
  --velvet-wine: #8B1A4A;
  --gold-accent: #C9A96E;
  --charcoal: #2C2038;
  --soft-gray: #E8DDE6;
  --text-dark: #2C2038;
  --text-muted: #7A5C72;
  --text-light: #F9EDE3;
  --shadow-rose: rgba(180, 80, 120, 0.18);
  --shadow-plum: rgba(107, 45, 94, 0.22);
  --gradient-main: linear-gradient(135deg, #6B2D5E 0%, #C875A0 50%, #E8A0BF 100%);
  --gradient-soft: linear-gradient(160deg, #FDF6F0 0%, #F2D9C4 60%, #E8A0BF 100%);
  --gradient-gold: linear-gradient(90deg, #C9A96E 0%, #F2D9C4 50%, #C9A96E 100%);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-soft: 18px;
  --border-radius-pill: 50px;
}

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: var(--cream-pearl);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--warm-ivory);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--soft-mauve), var(--deep-plum));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--deep-plum);
}

/* ==================== HEADER ==================== */
header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 2px solid var(--champagne);
  box-shadow: 0 4px 24px var(--shadow-rose);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: 0 6px 32px var(--shadow-plum);
  border-bottom-color: var(--rose-blush);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-wrap img {
  height: 44px;
  width: auto;
}

.logo-text {
  font-size: 1.45rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.04em;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.5rem 0.85rem;
  border-radius: var(--border-radius-pill);
  letter-spacing: 0.03em;
  transition: var(--transition-smooth);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gradient-main);
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: translateX(-50%) scaleX(1);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--deep-plum);
  background: rgba(232, 160, 191, 0.12);
}

.nav-cta {
  background: var(--gradient-main) !important;
  color: #ffffff !important;
  padding: 0.55rem 1.25rem !important;
  border-radius: var(--border-radius-pill) !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 4px 15px var(--shadow-rose);
  transition: var(--transition-smooth) !important;
}

.nav-cta:hover {
  box-shadow: 0 6px 24px var(--shadow-plum) !important;
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--champagne);
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  color: var(--deep-plum);
  font-size: 1.5rem;
  transition: var(--transition-smooth);
}

.mobile-menu-toggle:hover {
  background: var(--warm-ivory);
  border-color: var(--rose-blush);
}

/* Mobile Menu */
.mobile-menu {
  background: #ffffff;
  border-top: 1px solid var(--champagne);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: 0 8px 24px var(--shadow-rose);
}

.mobile-menu a {
  display: block;
  padding: 0.7rem 1rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  border-bottom: 1px solid var(--soft-gray);
  transition: var(--transition-smooth);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--deep-plum);
  background: rgba(232, 160, 191, 0.12);
  padding-left: 1.5rem;
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main-nav {
    display: none;
  }
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-smooth);
  border-radius: var(--border-radius-pill);
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--gradient-main);
  color: #ffffff;
  box-shadow: 0 4px 18px var(--shadow-rose);
}

.btn-primary:hover {
  box-shadow: 0 8px 30px var(--shadow-plum);
  transform: translateY(-3px) scale(1.02);
  color: #ffffff;
  text-decoration: none;
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.00);
}

.btn-secondary {
  background: transparent;
  color: var(--deep-plum);
  border: 2px solid var(--deep-plum);
  box-shadow: 0 2px 10px var(--shadow-rose);
}

.btn-secondary:hover {
  background: var(--deep-plum);
  color: #ffffff;
  box-shadow: 0 6px 20px var(--shadow-plum);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
  font-weight: 700;
}

.btn-gold:hover {
  box-shadow: 0 8px 28px rgba(201, 169, 110, 0.45);
  transform: translateY(-3px) scale(1.03);
  text-decoration: none;
  color: var(--charcoal);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* ==================== FORMS ==================== */
.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--deep-plum);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1.1rem;
  background: #ffffff;
  border: 2px solid var(--soft-gray);
  border-radius: var(--border-radius-soft);
  color: var(--text-dark);
  font-size: 0.97rem;
  font-family: inherit;
  transition: var(--transition-smooth);
  outline: none;
}

.form-control::placeholder {
  color: #b89ab0;
}

.form-control:focus {
  border-color: var(--soft-mauve);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 117, 160, 0.14);
}

.form-control:hover:not(:focus) {
  border-color: var(--rose-blush);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B2D5E' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--soft-mauve);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-error {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  display: block;
}

.form-success {
  background: linear-gradient(135deg, #f0faf5, #e6f7ef);
  border: 2px solid #a8dfc9;
  border-radius: var(--border-radius-soft);
  padding: 1.2rem 1.5rem;
  color: #1a6e47;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 10px 50px var(--shadow-rose);
  border: 1px solid var(--champagne);
}

/* ==================== CARDS ==================== */
.card {
  background: #ffffff;
  border-radius: var(--border-radius-soft);
  overflow: hidden;
  border: 1px solid var(--champagne);
  transition: var(--transition-smooth);
}

.card:hover {
  box-shadow: 0 16px 48px var(--shadow-rose);
  transform: translateY(-6px);
  border-color: var(--rose-blush);
}

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-img-placeholder {
  width: 100%;
  height: 220px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-plum);
  font-size: 2.5rem;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-plum);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.card-price {
  font-size: 1.35rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(200, 117, 160, 0.15);
  color: var(--deep-plum);
  border: 1px solid rgba(200, 117, 160, 0.3);
}

.card-featured {
  border: 2px solid var(--soft-mauve);
  position: relative;
}

.card-featured::before {
  content: '✦ Preporučujemo';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: var(--border-radius-pill);
  white-space: nowrap;
  letter-spacing: 0.04em;
  box-shadow: 0 3px 12px var(--shadow-rose);
}

/* Service Cards */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--champagne);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  box-shadow: 0 14px 40px var(--shadow-rose);
  transform: translateY(-5px);
  border-color: var(--rose-blush);
}

.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: var(--deep-plum);
  box-shadow: 0 4px 16px var(--shadow-rose);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--gradient-main);
  color: #ffffff;
  transform: scale(1.08) rotate(5deg);
}

/* Team Cards */
.team-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--champagne);
  transition: var(--transition-smooth);
  text-align: center;
}

.team-card:hover {
  box-shadow: 0 16px 44px var(--shadow-rose);
  transform: translateY(-5px);
}

.team-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
}

.team-img-placeholder {
  width: 100%;
  height: 260px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--deep-plum);
}

.team-body {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-plum);
}

.team-role {
  font-size: 0.85rem;
  color: var(--soft-mauve);
  font-style: italic;
  margin-top: 0.25rem;
}

/* Pricing Card */
.pricing-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 2.2rem;
  border: 2px solid var(--champagne);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.pricing-card-popular {
  border-color: var(--soft-mauve);
  background: linear-gradient(160deg, #fff 60%, rgba(232, 160, 191, 0.08) 100%);
  box-shadow: 0 10px 40px var(--shadow-rose);
}

.pricing-card-popular .pricing-badge {
  display: inline-block;
  background: var(--gradient-main);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: var(--border-radius-pill);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-dark);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--soft-gray);
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature i {
  color: var(--soft-mauve);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ==================== ACCORDION ==================== */
.accordion-item {
  background: #ffffff;
  border: 1px solid var(--champagne);
  border-radius: var(--border-radius-soft);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.accordion-item:hover {
  box-shadow: 0 4px 20px var(--shadow-rose);
}

.accordion-header {
  width: 100%;
  padding: 1.2rem 1.5rem;
  background: #ffffff;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep-plum);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background 0.25s ease;
}

.accordion-header:hover {
  background: var(--warm-ivory);
}

.accordion-header.active {
  background: linear-gradient(90deg, rgba(200, 117, 160, 0.1), transparent);
}

.accordion-icon {
  font-size: 1.2rem;
  color: var(--soft-mauve);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--deep-plum);
}

.accordion-content {
  padding: 0 1.5rem 1.2rem;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  border-top: 1px solid var(--soft-gray);
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-lg {
  padding: 7rem 0;
}

.section-bg-light {
  background-color: var(--warm-ivory);
}

.section-bg-cream {
  background-color: var(--cream-pearl);
}

.section-bg-dark {
  background: var(--charcoal);
  color: var(--text-light);
}

.section-bg-plum {
  background: linear-gradient(135deg, var(--deep-plum) 0%, var(--velvet-wine) 100%);
  color: #ffffff;
}

.section-bg-rose {
  background: linear-gradient(160deg, var(--warm-ivory) 0%, var(--champagne) 50%, rgba(232, 160, 191, 0.2) 100%);
}

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

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft-mauve);
  background: rgba(200, 117, 160, 0.12);
  border: 1px solid rgba(200, 117, 160, 0.3);
  padding: 0.3rem 1rem;
  border-radius: var(--border-radius-pill);
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--deep-plum);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.section-title span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--gradient-main);
  border-radius: 4px;
  margin: 1rem auto 0;
}

/* ==================== HERO ==================== */
.hero-section {
  background: var(--gradient-soft);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 160, 191, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(107, 45, 94, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--deep-plum);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-title .highlight {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.75;
}

.hero-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 70px var(--shadow-plum);
  position: relative;
}

.hero-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero-badge {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--deep-plum);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

.hero-badge-bottom {
  bottom: -20px;
  left: -20px;
}

.hero-badge-top {
  top: -15px;
  right: -15px;
}

.hero-badge i {
  font-size: 1.4rem;
  color: var(--gold-accent);
}

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

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--gradient-soft);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(107, 45, 94, 0.75), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}

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

.gallery-overlay-text {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--champagne);
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: 0 12px 36px var(--shadow-rose);
  transform: translateY(-4px);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  color: var(--rose-blush);
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.6;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin-top: 1rem;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--deep-plum);
}

.testimonial-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.star-rating {
  color: var(--gold-accent);
  font-size: 0.88rem;
  letter-spacing: 2px;
}

/* ==================== STATS ==================== */
.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 500;
}

/* ==================== FOOTER ==================== */
footer,
.site-footer {
  background: var(--charcoal);
  color: var(--text-light);
  padding: 4rem 0 0;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.8rem;
  display: block;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #a89ab0;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-blush);
  margin-bottom: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(232, 160, 191, 0.2);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #c8b8c4;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--rose-blush);
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--soft-mauve);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: #c8b8c4;
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--rose-blush);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: #c8b8c4;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-item a:hover {
  color: var(--rose-blush);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(232, 160, 191, 0.12);
  border: 1px solid rgba(232, 160, 191, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-blush);
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--gradient-main);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 0;
  margin-top: 3rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #7a6a77;
}

.footer-bottom a {
  color: #a89ab0;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-bottom a:hover {
  color: var(--rose-blush);
}

/* ==================== COOKIE BANNER ==================== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--charcoal);
  border-top: 2px solid var(--soft-mauve);
  padding: 1.2rem 1.5rem;
  box-shadow: 0 -6px 30px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

#cookie-banner .cookie-text {
  flex: 1;
  min-width: 200px;
}

#cookie-banner .cookie-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
  display: block;
}

#cookie-banner .cookie-body {
  font-size: 0.83rem;
  color: #c8b8c4;
  line-height: 1.5;
}

#cookie-banner .cookie-body a {
  color: #e8a0bf;
  text-decoration: underline;
  transition: color 0.2s ease;
}

#cookie-banner .cookie-body a:hover {
  color: var(--rose-blush);
}

#cookie-banner .cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

#cookie-accept {
  background: var(--gradient-main);
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.04em;
}

#cookie-accept:hover {
  box-shadow: 0 4px 16px var(--shadow-rose);
  transform: translateY(-2px);
}

#cookie-decline {
  background: transparent;
  color: #a89ab0;
  border: 1px solid rgba(232, 160, 191, 0.3);
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

#cookie-decline:hover {
  border-color: var(--rose-blush);
  color: var(--rose-blush);
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: var(--soft-mauve);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--deep-plum);
}

.breadcrumb span {
  color: var(--text-muted);
}

.breadcrumb .separator {
  color: var(--rose-blush);
  font-size: 0.75rem;
}

/* ==================== BANNERS & ALERTS ==================== */
.banner-promo {
  background: var(--gradient-main);
  color: #ffffff;
  text-align: center;
  padding: 0.7rem 1.5rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.banner-promo a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 700;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: 14px;
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.alert-info {
  background: rgba(200, 117, 160, 0.1);
  border: 1px solid rgba(200, 117, 160, 0.3);
  color: var(--deep-plum);
}

.alert-success {
  background: rgba(76, 175, 80, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #2e7d32;
}

.alert-warning {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #856404;
}

/* ==================== PAGE HERO ==================== */
.page-hero {
  background: linear-gradient(135deg, var(--deep-plum) 0%, var(--velvet-wine) 50%, var(--soft-mauve) 100%);
  color: #ffffff;
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 40%;
  height: 200%;
  background: rgba(255,255,255,0.04);
  transform: rotate(15deg);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 30%;
  height: 160%;
  background: rgba(255,255,255,0.03);
  transform: rotate(-10deg);
  pointer-events: none;
}

.page-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  position: relative;
  z-index: 2;
  max-width: 550px;
  margin: 0 auto;
}

/* ==================== PROCESS / STEPS ==================== */
.step-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px var(--shadow-rose);
}

.step-content h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--deep-plum);
  margin-bottom: 0.3rem;
}

.step-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==================== TABLE ==================== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow-rose);
}

.price-table thead {
  background: var(--gradient-main);
}

.price-table thead th {
  padding: 1rem 1.2rem;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
}

.price-table tbody tr {
  background: #ffffff;
  transition: background 0.2s ease;
  border-bottom: 1px solid var(--soft-gray);
}

.price-table tbody tr:last-child {
  border-bottom: none;
}

.price-table tbody tr:hover {
  background: var(--warm-ivory);
}

.price-table tbody tr:nth-child(even) {
  background: rgba(249, 237, 227, 0.5);
}

.price-table tbody tr:nth-child(even):hover {
  background: var(--warm-ivory);
}

.price-table td {
  padding: 0.85rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.price-table td:last-child {
  font-weight: 700;
  color: var(--deep-plum);
  text-align: right;
}

/* ==================== MODAL ==================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 32, 56, 0.7);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 20px 70px rgba(0,0,0,0.25);
  position: relative;
  animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--soft-gray);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: var(--rose-blush);
  color: #ffffff;
}

/* ==================== LOADING SPINNER ==================== */
.spinner {
  width: 44px;
  height: 44px;
  border: 4px solid var(--soft-gray);
  border-top-color: var(--soft-mauve);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
  margin: 2rem auto;
}

.spinner-sm {
  width: 22px;
  height: 22px;
  border-width: 3px;
}

/* ==================== ANIMATIONS ==================== */
@keyframes spin {
  to { transform: rotate(360deg); }
}

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

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-left {
  animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-right {
  animation: fadeInRight 0.6s ease forwards;
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

.animate-pulse-soft {
  animation: pulse-soft 2.5s ease-in-out infinite;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ==================== TAGS / CHIPS ==================== */
.tag {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background: rgba(200, 117, 160, 0.12);
  color: var(--deep-plum);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: var(--border-radius-pill);
  border: 1px solid rgba(200, 117, 160, 0.25);
  letter-spacing: 0.04em;
  transition: var(--transition-smooth);
}

.tag:hover {
  background: var(--gradient-main);
  color: #ffffff;
  border-color: transparent;
  cursor: pointer;
}

.tag-gold {
  background: rgba(201, 169, 110, 0.12);
  color: #7a5a20;
  border-color: rgba(201, 169, 110, 0.3);
}

/* ==================== DIVIDERS ==================== */
.divider-wave {
  width: 100%;
  height: 60px;
  overflow: hidden;
  line-height: 0;
}

.divider-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.divider-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  color: var(--rose-blush);
  font-size: 1.1rem;
}

.divider-ornament::before,
.divider-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-blush), transparent);
}

/* ==================== UTILS ==================== */
.text-plum { color: var(--deep-plum); }
.text-mauve { color: var(--soft-mauve); }
.text-rose { color: var(--dusty-rose); }
.text-gold { color: var(--gold-accent); }
.text-muted-rose { color: var(--text-muted); }
.text-cream { color: var(--cream-pearl); }

.bg-plum { background-color: var(--deep-plum); }
.bg-mauve { background-color: var(--soft-mauve); }
.bg-cream-pearl { background-color: var(--cream-pearl); }
.bg-warm-ivory { background-color: var(--warm-ivory); }
.bg-champagne { background-color: var(--champagne); }

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: var(--gradient-main);
}

.shadow-rose { box-shadow: 0 8px 30px var(--shadow-rose); }
.shadow-plum { box-shadow: 0 8px 30px var(--shadow-plum); }

.border-rose { border-color: var(--rose-blush); }
.border-plum { border-color: var(--deep-plum); }
.border-champagne { border-color: var(--champagne); }

.rounded-soft { border-radius: var(--border-radius-soft); }
.rounded-pill { border-radius: var(--border-radius-pill); }

.transition-all { transition: var(--transition-smooth); }

/* Hover lift */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px var(--shadow-rose);
}

/* ==================== SHIMMER EFFECT ==================== */
.shimmer-bg {
  background: linear-gradient(
    90deg,
    var(--champagne) 0%,
    rgba(255,255,255,0.8) 50%,
    var(--champagne) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

/* ==================== CONTACT SPECIFIC ==================== */
.contact-info-block {
  background: linear-gradient(135deg, var(--deep-plum) 0%, var(--velvet-wine) 100%);
  border-radius: 22px;
  padding: 2.5rem;
  color: #ffffff;
  height: 100%;
}

.contact-info-block h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-info-block p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.contact-detail-icon {