/* =========================================
   ORS Metsan - Ana Stil Dosyası
   Tasarım: Endüstriyel / Güçlü / Güvenilir
   Font: Barlow Condensed + Barlow
   ========================================= */

:root {
  --primary:     #E8A000;
  --primary-dark:#C98000;
  --secondary:   #1A1A2E;
  --accent:      #FF6B35;
  --dark:        #111318;
  --dark-2:      #1C1F26;
  --dark-3:      #252A35;
  --light:       #F5F5F5;
  --text:        #2D2D2D;
  --text-muted:  #6B7280;
  --white:       #FFFFFF;
  --border:      #E2E8F0;
  --success:     #22C55E;
  --font-display:'Barlow Condensed', sans-serif;
  --font-body:   'Barlow', sans-serif;
  --shadow:      0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.18);
  --radius:      8px;
  --radius-lg:   16px;
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

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

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

/* ---- TOPBAR ---- */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  transition: var(--transition);
}
.topbar-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-link:hover { color: var(--primary); }
.topbar-text { display: flex; align-items: center; gap: 6px; }
.topbar-social {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.75rem;
  transition: var(--transition);
}
.topbar-social:hover { background: var(--primary); color: var(--dark); }

/* ---- NAVBAR ---- */
#mainNav {
  background: transparent;
  top: 36px;
  padding: 16px 0;
  transition: var(--transition);
}
#mainNav.scrolled {
  background: rgba(17,19,24,0.97);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  top: 0;
}
.navbar-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.brand-ors {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
  line-height: 1;
}
.brand-metsan {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 4px;
  line-height: 1;
}
.navbar-brand small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
  padding: 8px 14px !important;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--primary) !important; }
.nav-link:hover::after { transform: scaleX(1); }
.btn-nav {
  font-family: var(--font-display);
  letter-spacing: 1px;
  font-size: 0.9rem;
  padding: 8px 20px !important;
  border-radius: 4px;
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--dark) !important;
  transition: var(--transition);
}
.btn-nav:hover { background: transparent; color: var(--primary) !important; }

/* ---- HERO ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, #0d0f14 0%, #1a1f2e 50%, #0d1117 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E8A000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,0,0.15);
  border: 1px solid rgba(232,160,0,0.4);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title span { color: var(--primary); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  max-width: 540px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-features {
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.hero-features .fa-check-circle { color: var(--primary); }
.btn-hero { animation: fadeInUp 0.7s ease 0.4s both; border-radius: 4px; }
.hero-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  animation: fadeInRight 0.8s ease 0.3s both;
}
.hero-card h4 { color: var(--primary); font-family: var(--font-display); font-weight: 700; margin-bottom: 16px; }
.mini-prices { display: flex; flex-direction: column; gap: 10px; }
.mini-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border-left: 3px solid var(--primary);
}
.mini-price-name { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.mini-price-val { color: var(--primary); font-weight: 700; font-family: var(--font-display); font-size: 1.05rem; }
.mini-price-val small { color: rgba(255,255,255,0.4); font-size: 0.75rem; }
.price-note { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.hero-scroll-hint {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}
.hero-scroll-hint a { color: rgba(255,255,255,0.4); font-size: 1.2rem; text-decoration: none; }

/* ---- STATS ---- */
.stats-section { background: var(--primary); padding: 0; }
.stat-box {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.1);
  transition: var(--transition);
}
.stat-box:last-child { border-right: none; }
.stat-box:hover { background: rgba(0,0,0,0.08); }
.stat-icon { font-size: 1.8rem; color: rgba(0,0,0,0.35); margin-bottom: 8px; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: rgba(0,0,0,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

/* ---- SECTIONS ---- */
.section-padding { padding: 90px 0; }
.bg-dark-section { background: var(--dark-2); }
.bg-light-section { background: #F8FAFC; }
.section-header { margin-bottom: 10px; }
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(232,160,0,0.1);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-subtitle { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ---- SERVICE CARDS ---- */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.service-icon-wrap {
  height: 160px;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--dark); }
.service-img img { width: 100%; height: 180px; object-fit: cover; }
.service-body { padding: 24px; flex: 1; }
.service-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.service-desc { color: var(--text-muted); font-size: 0.9rem; }
.service-footer { padding: 0 24px 24px; }
.btn-outline-warning {
  border-color: var(--primary);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.btn-outline-warning:hover { background: var(--primary); border-color: var(--primary); color: var(--dark); }

/* ---- PRICE CARDS ---- */
.price-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.price-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(232,160,0,0.15);
}
.price-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.price-card-value {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
  font-size: 1.4rem;
  line-height: 1.2;
}
.price-card-value small { font-size: 1rem; color: rgba(255,255,255,0.5); }
.price-card-unit { color: rgba(255,255,255,0.35); font-size: 0.78rem; margin-top: 4px; }
.price-card-note { margin-top: 10px; font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ---- ABOUT ---- */
.about-visual {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-accent-1 {
  position: absolute;
  top: -30px; right: -30px;
  width: 200px; height: 200px;
  background: var(--primary);
  opacity: 0.15;
  border-radius: 50%;
}
.about-accent-2 {
  position: absolute;
  bottom: -40px; left: -40px;
  width: 250px; height: 250px;
  background: var(--accent);
  opacity: 0.08;
  border-radius: 50%;
}
.about-badge-floating {
  position: absolute;
  top: 30px; left: 30px;
  background: var(--primary);
  color: var(--dark);
  padding: 16px 20px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.85rem;
}
.about-badge-floating i { font-size: 2rem; }
.about-stats-floating {
  position: absolute;
  bottom: 30px; right: 30px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 20px 30px;
  border-radius: var(--radius);
  text-align: center;
}
.about-stats-floating strong { display: block; font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.about-stats-floating span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.about-text { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 28px; }
.about-features { display: flex; flex-direction: column; gap: 16px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #F8FAFC;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}
.about-feature:hover { background: #FFF7E6; }
.about-feature-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.1rem;
}
.about-feature strong { display: block; margin-bottom: 4px; }
.about-feature p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ---- WHY SECTION ---- */
.why-section { background: #F8FAFC; }
.why-card {
  position: relative;
  padding: 36px 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
  overflow: hidden;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.why-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.08;
  position: absolute;
  top: 10px; right: 20px;
  line-height: 1;
}
.why-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 16px; }
.why-card h4 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ---- POSTS ---- */
.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-image img { width: 100%; height: 200px; object-fit: cover; }
.post-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-date { font-size: 0.78rem; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.post-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.post-excerpt { color: var(--text-muted); font-size: 0.9rem; flex: 1; }
.post-link { color: var(--primary); font-weight: 600; text-decoration: none; margin-top: 16px; display: inline-flex; align-items: center; gap: 4px; }
.post-link:hover { color: var(--primary-dark); }

/* ---- FAQ ---- */
.faq-item { border: 1px solid var(--border) !important; border-radius: var(--radius) !important; margin-bottom: 10px; overflow: hidden; }
.faq-button {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  background: var(--white) !important;
  color: var(--dark) !important;
  box-shadow: none !important;
}
.faq-button:not(.collapsed) { background: var(--primary) !important; color: var(--dark) !important; }
.faq-button::after { filter: none; }
.faq-answer { color: var(--text-muted); }

/* ---- REFS ---- */
.refs-section { background: var(--dark); padding: 40px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.refs-inner { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 30px; }
.ref-item { opacity: 0.5; transition: var(--transition); }
.ref-item:hover { opacity: 1; }
.ref-item img { height: 40px; width: auto; filter: grayscale(1) brightness(2); }
.ref-name { color: rgba(255,255,255,0.5); font-family: var(--font-display); font-size: 1rem; letter-spacing: 2px; }

/* ---- CONTACT ---- */
.contact-section { background: var(--light); }
.contact-info-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--dark);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
}
.ci-wa { background: #25D366; color: white !important; }
.contact-info-item strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.contact-info-item a, .contact-info-item span { color: var(--text); font-weight: 500; text-decoration: none; display: block; }
.contact-info-item a:hover { color: var(--primary); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }
.form-label { font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 6px; }
.form-input {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(232,160,0,0.12);
  outline: none;
}
.map-container { border-radius: var(--radius-lg); overflow: hidden; height: 350px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ---- FOOTER ---- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-brand { margin-bottom: 16px; }
.footer-about { font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--primary); border-color: var(--primary); color: var(--dark); }
.footer-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-contact i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom a:hover { color: var(--primary); }

/* ---- BUTTONS ---- */
.btn-warning { background: var(--primary); border-color: var(--primary); color: var(--dark); font-family: var(--font-display); letter-spacing: 0.5px; transition: var(--transition); }
.btn-warning:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--dark); transform: translateY(-2px); }

/* ---- FLOATING BUTTONS ---- */
.whatsapp-float {
  position: fixed;
  bottom: 80px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }
.scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.7); }
}

/* ---- REVEAL ANIMATION ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .topbar { display: none; }
  #mainNav { top: 0; background: rgba(17,19,24,0.97); }
  .hero-content { padding-top: 100px; }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.1); }
}
@media (max-width: 768px) {
  .section-padding { padding: 60px 0; }
  .hero-title { font-size: 2.5rem; }
  .contact-form-card { padding: 24px; }
  .about-visual { height: 280px; }
}
