html { scroll-behavior: smooth; }
:root {
    /* Lithuanian palette: forest green primary, golden yellow accent, deep red */
    --primary-color: hsl(158, 100%, 21%);   /* forest green */
    --primary-dark: #004C32;    /* deeper forest green */
    --primary-light: #4FAF7B;   /* light green */
    --accent-color: #FDB913;    /* golden yellow */
    --success-color: #006A44;
    --warning-color: #FDB913;
    --error-color: #C1272D;     /* deep red */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    /* Use Manrope for a cleaner, modern look; fallback to Inter */
    font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(
        135deg,
        #004C32 20%,    /* Forest Green */
        #4FAF7B 10%   /* Deep Red */
      );
    color: #f8fafc;  
    min-height: 100vh;
    line-height: 1.65;
}

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); background: rgba(17, 24, 39, 0.35); border-bottom: 1px solid rgba(255,255,255,0.15); }
.site-header .inner { max-width: 1200px; margin: 0 auto; padding: 0.75rem 1rem; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 0.5rem; font-family: 'Space Grotesk', sans-serif; font-weight: 800; color: #ffffff; text-decoration: none; }
.brand i { color: #ffffff; }
.main-nav { display: flex; align-items: center; gap: 1rem; }
.main-nav a { color: rgba(255,255,255,0.92); text-decoration: none; font-weight: 600; padding: 0.5rem 0.75rem; border-radius: 8px; }
.main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,0.15); color: #ffffff; }

/* Mobile nav toggle */
.menu-toggle { display: none; width: 42px; height: 42px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.12); color: #fff; align-items: center; justify-content: center; cursor: pointer; }
    .menu-toggle:focus { outline: 3px solid rgba(0,106,68,0.35); outline-offset: 2px; }

/* Responsive header nav */
@media (max-width: 768px) {
    .site-header .inner { position: relative; }
    .menu-toggle { display: inline-flex; }
    .main-nav { display: none; position: absolute; top: calc(100% + 8px); left: 1rem; right: 1rem; flex-direction: column; gap: 0.25rem; padding: 0.5rem; border-radius: 12px; background: rgba(17, 24, 39, 0.9); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); box-shadow: 0 10px 25px -10px rgba(0,0,0,0.5); z-index: 1001; }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 0.75rem 0.75rem; width: 100%; border-radius: 8px; }
}

/* Sections */
section {
    scroll-margin-top: 80px;
  }
  
  .section {
    padding: 3rem 1rem;
    background: transparent;
  }
  
  .section.alt {
    background: linear-gradient(
      180deg,
      rgba(253,185,19,0.08) 0%,
      rgba(0,106,68,0.06) 50%,
      rgba(193,39,45,0.08) 100%
    );
  }
  
  .section .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Section-specific backgrounds tuned to Lithuanian gradient theme */
  #evaluate.section.alt,
  #contact.section.alt {
    background: linear-gradient(
      180deg,
      rgba(193,39,45,0.08) 0%,
      rgba(0,106,68,0.06) 50%,
      #ffffff 100%
    );
  }
  
  #about.section {
    background: linear-gradient(
      180deg,
      rgba(253,185,19,0.06) 0%,
      #ffffff 100%
    );
  }
  
  .section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    position: relative;
  }
  
  .section h2::after {
    content: '';
    display: block;
    width: 72px;
    height: 4px;
    border-radius: 999px;
    margin-top: 8px;
    background: linear-gradient(
      135deg,
      #006A44 0%,    /* Forest Green */
      #C1272D 100%   /* Deep Red */
    );
    opacity: 0.9;
  }
  
  .section p.lead {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
  }

  
.hero-section { background: linear-gradient(135deg, rgba(253,185,19,0.95) 0%, rgba(0,106,68,0.92) 50%, rgba(193,39,45,0.90) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.15"/><circle cx="20" cy="80" r="0.5" fill="%23ffffff" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'); padding: 5.5rem 1rem 3rem; position: relative; overflow: hidden; min-height: 82vh; display: flex; align-items: center; }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-inner { display: grid; grid-template-columns: 1.25fr 1fr; gap: 2.5rem; align-items: center; }
.hero-text { color: #ffffff; }
.hero-visual { position: relative; }
.hero-visual::after { content: ''; position: absolute; inset: -20px; background: radial-gradient(ellipse at 60% 40%, rgba(255,255,255,0.25), transparent 60%); filter: blur(12px); z-index: 0; }
.hero-image { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.35); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35); backdrop-filter: blur(6px); border-radius: 20px; overflow: hidden; position: relative; }
.hero-image svg { display: block; width: 100%; height: auto; }
.hero-image img { display:block; width:100%; height:auto; }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-size: 4rem; font-weight: 700; color: white; margin-bottom: 1rem; text-shadow: 0 4px 20px rgba(0,0,0,0.3); line-height: 1.1; }
.hero-subtitle { font-size: 1.25rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; font-weight: 400; }
.hero-cta { display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.btn-ghost { background: rgba(255,255,255,0.18); color: #fff; border: 1px solid rgba(255,255,255,0.28); padding: 0.75rem 1.25rem; border-radius: 10px; text-decoration: none; font-weight: 700; }

.main-container { max-width: 1200px; margin: -2rem auto 2rem; padding: 0 1rem; position: relative; z-index: 10; }
.estimation-card { color:rgb(0, 0, 0); border-radius: 24px; box-shadow: var(--shadow-xl); overflow: hidden; backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.2); }
.card-header { background: linear-gradient(135deg, rgba(17,24,39,0.35) 0%, rgba(31,41,55,0.25) 100%); padding: 2rem; border-bottom: 1px solid rgba(255,255,255,0.18); text-align: center; }
.card-header h2 { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 600; color: #ffffff; margin-bottom: 0.5rem; }
.card-header p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }
.form-section { padding: 2.5rem; }

/* Two-column layout: left form (40%), right evaluation (60%) */
.two-column { display: grid; grid-template-columns: 2fr 3fr; gap: 2rem; align-items: start; }
.left-pane, .right-pane { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.25); border-radius: 16px; padding: 1.25rem; }
/* Themed left-pane to better match hero */
.left-pane { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25); box-shadow: 0 10px 25px -10px rgba(0,0,0,0.25); }
.right-pane { min-height: 320px; }
/* Enhance evaluation responsiveness and stickiness */
@media (min-width: 992px) { .right-pane { position: sticky; top: 90px; } }
@media (max-width: 1024px) { .two-column { grid-template-columns: 1fr; } }

/* Right pane animated hero */
.eval-hero { text-align: center; }
.moving-road { position: relative; height: 150px; border-radius: 14px; overflow: hidden; background: linear-gradient(180deg, #eef2ff 0%, #ffffff 100%); border: 1px solid var(--gray-200); margin-bottom: 14px; }
.road-surface { position: absolute; bottom: 0; left: 0; width: 100%; height: 48px; background: repeating-linear-gradient(90deg, #d1d5db 0 32px, #cbd5e1 32px 64px); animation: scrollRoad 2s linear infinite; }
.car-anim { position: absolute; bottom: 54px; left: 50%; transform: translateX(-50%); font-size: 40px; color: var(--primary-dark); text-shadow: 0 6px 18px rgba(193,39,45,0.25); animation: bob 2s ease-in-out infinite; }
.road-dashes { position: absolute; bottom: 18px; left: 0; width: 100%; height: 6px; background: repeating-linear-gradient(90deg, transparent 0 40px, #ffffff 40px 64px, transparent 64px 104px); opacity: 0.8; filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1)); animation: scrollRoad 1.5s linear infinite; }
.city-skyline { position: absolute; bottom: 48px; left: 0; right: 0; height: 54px; background: linear-gradient(180deg, rgba(253,185,19,0.15), rgba(253,185,19,0)); mask-image: linear-gradient(180deg, black 20%, transparent 100%); animation: parallax 8s linear infinite; }
@keyframes parallax { from { background-position: 0 0; } to { background-position: 200px 0; } }
@keyframes scrollRoad { from { background-position: 0 0; } to { background-position: -128px 0; } }
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -6px); } }
.slogan { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #ffffff; margin: 6px 0 4px; }
.tagline { color: rgba(255,255,255,0.85); margin-bottom: 10px; }
.instructions { list-style: none; padding: 0; max-width: 460px; margin: 0.5rem auto 0; text-align: left; }
.instructions li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); margin: 6px 0; }
.instructions i { color: var(--primary-color); }

/* Stepper */
.stepper { display: flex; gap: 0.75rem; margin-bottom: 1rem; align-items: center; }
.step { flex: 1; display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.8rem; border: 2px solid rgba(255,255,255,0.25); border-radius: 10px; font-weight: 600; color: rgba(255,255,255,0.9); background: transparent; }
.step.active { border-color: var(--primary-color); color: var(--primary-color); box-shadow: 0 0 0 3px rgba(0,106,68,0.1); }
.step i { font-size: 1rem; }

.step-actions { display: flex; justify-content: space-between; gap: 0.75rem; margin-top: 1rem; }
.btn-primary { background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); color: #fff; border: none; padding: 0.75rem 1.25rem; border-radius: 10px; cursor: pointer; box-shadow: 0 10px 20px -10px rgba(0,106,68,0.55); transition: transform .2s ease, box-shadow .2s ease; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 20px 30px -15px rgba(0,106,68,0.5); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary { background: var(--gray-600); color: #fff; border: none; padding: 0.75rem 1.25rem; border-radius: 10px; cursor: pointer; }
.btn-secondary:disabled { opacity: 0.5; cursor: not-allowed; }

.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.form-group { position: relative; }
/* Card-like groups for better visual rhythm */
.left-pane .form-group { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); padding: 0.9rem; border-radius: 12px; transition: box-shadow .2s ease, transform .2s ease; }
.left-pane .form-group:hover { box-shadow: var(--shadow-sm); }
.form-label { display: block; font-weight: 700; color: rgba(255,255,255,0.96); margin-bottom: 0.5rem; font-size: 0.95rem; letter-spacing: 0.1px; }

/* Label help icon in front of label text */
.form-label.with-help { display: flex; align-items: center; gap: 0.4rem; }
.help-icon { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; color: var(--gray-500); cursor: help; position: relative; flex: 0 0 auto; }
.help-icon:hover, .help-icon:focus { color: var(--primary-color); outline: none; }
.help-icon::after { content: attr(data-tip); position: absolute; left: 50%; transform: translateX(-50%); bottom: calc(100% + 8px); background: var(--gray-900); color: #fff; padding: 8px 10px; border-radius: 8px; box-shadow: var(--shadow-lg); white-space: nowrap; font-size: 0.8rem; line-height: 1.2; opacity: 0; pointer-events: none; transition: opacity .15s ease, transform .15s ease; z-index: 30; }
.help-icon::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); bottom: calc(100% + 3px); border: 6px solid transparent; border-top-color: var(--gray-900); opacity: 0; transition: opacity .15s ease; z-index: 29; }
.help-icon:hover::after, .help-icon:focus::after { opacity: 1; transform: translateX(-50%) translateY(-2px); }
.help-icon:hover::before, .help-icon:focus::before { opacity: 1; }

.required { color: var(--error-color); font-weight: 700; }

.form-control, .form-select { width: 100%; padding: 0.875rem 1rem; border: 2px solid rgba(255,255,255,0.35); border-radius: 12px; font-size: 1rem; background: rgba(255,255,255,0.12); color: #ffffff; transition: all 0.3s ease; appearance: none; }
.form-control:focus, .form-select:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(0, 106, 68, 0.35); transform: translateY(-1px); }
.form-control::placeholder { color: rgba(255,255,255,0.65); }

/* Step titles */
.step-head { margin: 0 0 0.75rem 0; }
.step-title { color: #ffffff; font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--gray-800); }
.step-subtitle { color:rgb(224, 224, 224);font-size: 0.9rem; }

.form-select { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); background-position: right 0.75rem center; background-repeat: no-repeat; background-size: 1.5rem; padding-right: 3rem; }

.help-text { font-size: 0.85rem; color: var(--gray-500); margin-top: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.help-text i { font-size: 0.75rem; }

.submit-btn { background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); color: white; border: none; padding: 1rem 3rem; border-radius: 12px; font-size: 1.1rem; font-weight: 700; cursor: pointer; transition: all 0.3s ease; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; min-width: 200px; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 25px 50px -12px rgba(0, 106, 68, 0.5); }
.submit-btn:active { transform: translateY(0); }
.submit-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s; }
.submit-btn:hover::before { left: 100%; }

.alert { padding: 1rem 1.25rem; border-radius: 12px; margin-bottom: 1.5rem; font-weight: 500; }
.alert-danger { background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.35); color: #ffffff; }
.alert-info { background: rgba(59,130,246,0.12); border: 1px solid rgba(59,130,246,0.35); color: #ffffff; }

.results-section { margin-top: 2.5rem; animation: slideInUp 0.6s ease-out; }
@keyframes slideInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.results-header { text-align: center; margin-bottom: 2rem; }
.results-header h3 { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; color: #ffffff; margin-bottom: 0.5rem; }

.price-card { background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); color: white; padding: 2rem; border-radius: 20px; text-align: center; box-shadow: var(--shadow-xl); margin-bottom: 2rem; position: relative; overflow: hidden; }
.price-card::before { content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); border-radius: 50%; transform: translate(30px, -30px); }
.price-main { font-size: 3rem; font-weight: 800; margin-bottom: 0.5rem; text-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.price-label { font-size: 1.1rem; opacity: 0.9; font-weight: 500; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.stat-card { background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); padding: 1.5rem; border-radius: 16px; border: 1px solid rgba(0,106,68,0.15); text-align: center; transition: all 0.3s ease; color:rgb(0, 0, 0); }
.stat-card:hover { transform: translateY(-2px); box-shadow: 0 15px 35px -10px rgba(0,106,68,0.25); }
.stat-icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: white; font-size: 1.5rem; }
.stat-value { font-size: 1.5rem; font-weight: 700; color:rgb(0, 0, 0); margin-bottom: 0.25rem; }
.stat-label { color: black; font-size: 0.9rem; font-weight: 500; }

/* Compact results on right pane to better match left column height */
.right-pane .results-section { margin-top: 0.5rem; }
.right-pane .results-header h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.right-pane .price-card { padding: 1rem; border-radius: 14px; margin-bottom: 1rem; }
.right-pane .price-main { font-size: 2rem; margin-bottom: 0.25rem; }
.right-pane .price-label { font-size: 0.9rem; }
.right-pane .stats-grid { gap: 0.75rem; margin-bottom: 1rem; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.right-pane .stat-card { padding: 0.75rem; border-radius: 12px; }
.right-pane .stat-icon { width: 36px; height: 36px; font-size: 1.1rem; margin-bottom: 0.5rem; }
.right-pane .stat-value { font-size: 1.1rem; }
.right-pane .stat-label { font-size: 0.8rem; }

.vehicles-table { background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(0,106,68,0.15); color:rgb(0, 0, 0); }

/* Footer */
.site-footer { background: #0f172a; color:rgb(255, 255, 255); padding: 2rem 1rem; margin-top: 2rem; }
.site-footer .inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.site-footer a { color:rgb(0, 0, 0); text-decoration: none; }
.site-footer a:hover { color:#C1272D; }

.table-header { background: linear-gradient(135deg, rgba(253,185,19,0.10) 0%, rgba(0,106,68,0.08) 100%); padding: 1.5rem; border-bottom: 1px solid var(--gray-200); }
.table-header h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; color:rgb(0, 0, 0); margin-bottom: 0.25rem; }
.table-subtitle { color: rgba(0, 0, 0, 0.85); font-size: 0.9rem; }
.table-responsive { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 1rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.18); }
th { background: rgba(255,255,255,0.08); font-weight: 600; color:rgb(0, 0, 0); font-size: 0.9rem; }
tbody tr:hover { background: rgba(255,255,255,0.06); }
.badge { display: inline-flex; align-items: center; padding: 0.375rem 0.75rem; border-radius: 8px; font-size: 0.85rem; font-weight: 700; background: var(--accent-color); color: white; }

.loading { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,.3); border-radius: 50%; border-top-color: #fff; animation: spin 1s ease-in-out infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-section { padding: 5rem 1rem 2rem; min-height: 70vh; }
    .form-grid { grid-template-columns: 1fr; }
    .price-main { font-size: 2.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .form-section { padding: 1.5rem; }
}

.fade-in { animation: fadeIn 0.6s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.car-icon { background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-size: 2.5rem; margin-bottom: 1rem; }

/* Contact section enhancements */
.contact-grid { display:grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; align-items: stretch; }
@media (max-width: 992px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form-card { background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.96)); border: 1px solid rgba(0,106,68,0.18); border-radius: 16px; padding: 1.25rem; box-shadow: 0 10px 25px -10px rgba(0,106,68,0.25); }
.contact-info-card { position: relative; overflow: hidden; border-radius: 16px; color: #fff; padding: 1.25rem; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.15); background: radial-gradient(1200px 400px at -10% -20%, rgba(255,255,255,0.18), rgba(255,255,255,0) 60%), linear-gradient(135deg, #FDB913 0%, #006A44 50%, #C1272D 100%); }
.contact-info-card .info-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; margin-bottom: 0.75rem; }
.contact-info-item { display:flex; gap: 0.75rem; align-items: flex-start; padding: 0.75rem; border-radius: 12px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); margin-bottom: 0.75rem; }
.contact-info-item i { width: 28px; height: 28px; display:inline-flex; align-items:center; justify-content:center; background: rgba(0,0,0,0.2); border-radius: 8px; }
.social-links { display:flex; gap: 0.5rem; margin-top: 0.5rem; }
.social-links a { width: 36px; height: 36px; display:inline-flex; align-items:center; justify-content:center; border-radius: 10px; color:#fff; text-decoration:none; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.social-links a:hover { transform: translateY(-2px); box-shadow: 0 10px 20px -10px rgba(0,106,68,0.5); background: rgba(255,255,255,0.25); }

/* Force black text for Evaluation and Contact forms */
#evaluate .left-pane,
/* keep selectors from original */
#evaluate .left-pane .form-label .help-icon,
#evaluate .left-pane .help-text,
#evaluate .left-pane .form-control,
#evaluate .left-pane .form-select,
#contact .contact-form-card,
#contact .contact-form-card .form-label,
#contact .contact-form-card .form-label .help-icon,
#contact .contact-form-card .help-text,
#contact .contact-form-card .form-control,
#contact .contact-form-card .form-select { color: #000; }

#evaluate .left-pane .form-control::placeholder,
#evaluate .left-pane .form-select::placeholder,
#contact .contact-form-card .form-control::placeholder { color: rgba(0, 0, 0, 0.6); }


