/* =========================================
   Mukron Financial Advisory – Main Styles
   Framework: Pure CSS (Grid + Flexbox)
   ========================================= */

/* --- CSS Custom Properties --- */
:root {
  --color-forest: #1a3a2a;
  --color-forest-light: #234d38;
  --color-forest-dark: #112618;
  --color-gold: #c9a96e;
  --color-gold-light: #e0c48e;
  --color-gold-dark: #a8864d;
  --color-cream: #f8f5f0;
  --color-cream-dark: #f0ebe2;
  --color-white: #ffffff;
  --color-dark: #0d1a12;
  --color-text: #2d3f35;
  --color-text-light: #5a7060;
  --color-border: #dde5e0;
  --color-success: #28a745;
  --color-error: #dc3545;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(26, 58, 42, 0.08);
  --shadow-md: 0 8px 32px rgba(26, 58, 42, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 58, 42, 0.18);
  --shadow-gold: 0 8px 32px rgba(201, 169, 110, 0.25);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-height: 80px;
  --section-padding: 100px;
}

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

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

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* --- Container --- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(201, 169, 110, 0.12);
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(201, 169, 110, 0.3);
  margin-bottom: 16px;
}

.section-tag.light {
  color: var(--color-gold-light);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-forest-dark);
  margin-bottom: 20px;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 620px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.section-subtitle.light {
  color: rgba(255,255,255,0.75);
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary-custom {
  background: var(--color-gold);
  color: var(--color-forest-dark);
  border-color: var(--color-gold);
}

.btn-primary-custom:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

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

.btn-full {
  width: 100%;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(17, 38, 24, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-gold);
  color: var(--color-forest-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
}

.logo-text {
  color: var(--color-white);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--color-gold);
  background: rgba(201, 169, 110, 0.1);
}

.nav-link.nav-cta {
  background: var(--color-gold);
  color: var(--color-forest-dark);
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
}

.nav-link.nav-cta:hover {
  background: var(--color-gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 25, 16, 0.88) 0%,
    rgba(17, 38, 24, 0.75) 50%,
    rgba(26, 58, 42, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(var(--nav-height) + 60px) 0 80px;
}

.hero-inner {
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  background: rgba(201, 169, 110, 0.18);
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--color-gold-light);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.hero-stats {
  display: flex;
  gap: 50px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

/* --- About Section --- */
.about-section {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-white);
}

.about-img-secondary img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.about-badge-card {
  background: var(--color-forest);
  color: var(--color-white);
  padding: 14px;
  text-align: center;
}

.badge-year {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.badge-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.about-content {
  padding-right: 20px;
}

.about-text {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-values {
  margin: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 169, 110, 0.12);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

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

.value-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.value-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-forest-dark);
}

.value-text span {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* --- Services Section --- */
.services-section {
  padding: var(--section-padding) 0;
  background: var(--color-cream);
}

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

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(26, 58, 42, 0.07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-forest);
  transition: var(--transition);
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card:hover .service-icon {
  background: var(--color-forest);
  color: var(--color-gold);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-forest-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-gold-dark);
  transition: var(--transition);
}

.service-link:hover {
  color: var(--color-forest);
}

/* --- Benefits Section --- */
.benefits-section {
  padding: var(--section-padding) 0;
  background: var(--color-forest);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.benefits-left {
  position: sticky;
  top: 100px;
}

.benefits-left p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-size: 1.02rem;
}

.benefits-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 10px;
}

.benefits-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.benefits-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.benefit-item {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit-item.visible {
  opacity: 1;
  transform: translateX(0);
}

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

.benefit-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201, 169, 110, 0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  transition: color 0.3s ease;
}

.benefit-item:hover .benefit-number {
  color: var(--color-gold);
}

.benefit-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

/* --- Process Section --- */
.process-section {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
}

.step-connector {
  position: absolute;
  left: 29px;
  top: 60px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-gold) 0%, rgba(201, 169, 110, 0.2) 100%);
  z-index: 0;
}

.step-circle {
  width: 60px;
  height: 60px;
  background: var(--color-forest);
  border: 3px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-circle span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold);
}

.step-content {
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 40px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.step-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.step-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.step-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.step-content h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-forest-dark);
  margin-bottom: 10px;
}

.step-content p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Testimonials Section --- */
.testimonials-section {
  padding: var(--section-padding) 0;
  background: var(--color-cream);
}

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

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  position: relative;
  transition: var(--transition);
}

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

.testimonial-card.featured {
  background: var(--color-forest);
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
}

.testimonial-card.featured .testimonial-quote {
  color: var(--color-gold);
  opacity: 0.5;
}

.testimonial-card.featured .testimonial-text {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
}

.testimonial-card.featured .author-info strong {
  color: var(--color-white);
}

.testimonial-card.featured .author-info span {
  color: rgba(255,255,255,0.6);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--color-gold);
  opacity: 0.3;
  margin-bottom: 16px;
  display: block;
}

.testimonial-text {
  font-size: 0.97rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold);
}

.author-info strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-forest-dark);
}

.author-info span {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.stars {
  color: var(--color-gold);
  font-size: 0.85rem;
  margin-top: 2px;
}

/* --- Statistics Banner --- */
.stats-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-forest-dark) 0%, var(--color-forest) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.stat-card {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

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

.stat-big {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}

.stat-desc {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  letter-spacing: 0.03em;
}

/* --- FAQ Section --- */
.faq-section {
  padding: var(--section-padding) 0;
  background: var(--color-white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 100px;
}

.faq-left p {
  color: var(--color-text-light);
  margin: 20px 0 28px;
}

.faq-image {
  margin-top: 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.faq-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-forest-dark);
  font-family: var(--font-sans);
  text-align: left;
  gap: 16px;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-gold-dark);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-style: normal;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding-bottom: 22px;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* --- Contact Section --- */
.contact-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--color-forest) 0%, var(--color-forest-dark) 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-intro {
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem;
  margin: 20px 0 40px;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

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

.contact-detail-item strong {
  display: block;
  color: var(--color-gold);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-detail-item span,
.contact-detail-item a {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.contact-detail-item a:hover {
  color: var(--color-gold);
}

/* --- Contact Form --- */
.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-forest-dark);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-forest-dark);
  margin-bottom: 6px;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-forest);
  box-shadow: 0 0 0 3px rgba(26, 58, 42, 0.08);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--color-error);
}

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

.field-error {
  display: block;
  font-size: 0.78rem;
  color: var(--color-error);
  margin-top: 4px;
  min-height: 16px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

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

.form-checkbox label {
  font-size: 0.82rem;
  color: var(--color-text-light);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox label a {
  color: var(--color-gold-dark);
  text-decoration: underline;
}

/* --- Form Success --- */
#formSuccess {
  background: linear-gradient(135deg, #f0faf4 0%, #e8f5ed 100%);
  border: 2px solid var(--color-success);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--color-success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: successPop 0.5s ease;
}

.success-icon svg {
  width: 36px;
  height: 36px;
  color: white;
}

@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

#formSuccess h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #155724;
  margin-bottom: 12px;
}

#formSuccess p {
  color: #2d6a3f;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- Footer --- */
.footer {
  background: var(--color-dark);
  color: var(--color-white);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-tagline {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--color-gold);
  color: var(--color-forest-dark);
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-gold);
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-links-col a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links-col a:hover {
  color: var(--color-gold);
}

.footer-contact-col address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 14px;
}

.footer-contact-col address svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 2px;
}

.footer-contact-col a {
  color: rgba(255,255,255,0.55);
  transition: color 0.3s ease;
}

.footer-contact-col a:hover {
  color: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  color: rgba(255,255,255,0.35);
  font-size: 0.8rem;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-gold);
}

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 20, 14, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201, 169, 110, 0.25);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text strong {
  display: block;
  color: var(--color-white);
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.cookie-text p {
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--color-gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-sans);
}

.cookie-btn-primary {
  background: var(--color-gold);
  color: var(--color-forest-dark);
  border-color: var(--color-gold);
}

.cookie-btn-primary:hover {
  background: var(--color-gold-dark);
  border-color: var(--color-gold-dark);
}

.cookie-btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}

.cookie-btn-secondary:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}

.cookie-btn-outline {
  background: transparent;
  color: var(--color-gold);
  border-color: rgba(201, 169, 110, 0.4);
}

.cookie-btn-outline:hover {
  background: rgba(201, 169, 110, 0.1);
  border-color: var(--color-gold);
}

.cookie-customize-panel {
  max-width: 1240px;
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.cookie-toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-md);
}

.cookie-toggle-info strong {
  display: block;
  color: var(--color-white);
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.cookie-toggle-info span {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

.cookie-toggle-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--color-gold);
  flex-shrink: 0;
}

.cookie-toggle-item input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Design --- */
@media (max-width: 1100px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat-card:nth-child(3) {
    border-right: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  :root {
    --section-padding: 70px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-img-secondary {
    right: 20px;
    bottom: -20px;
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .benefits-left {
    position: static;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-left {
    position: static;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 20, 14, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 16px;
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-stats {
    gap: 30px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-step {
    grid-template-columns: 50px 1fr;
    gap: 20px;
  }

  .step-circle {
    width: 50px;
    height: 50px;
  }

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

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 60px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
}