/* ================================================
   STREFA OZE — Premium Renewable Energy Website
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

/* ─── CSS Variables ─── */
:root {
  --navy:      #0B1F3A;
  --navy-mid:  #132A4E;
  --navy-soft: #1E3A5F;
  --green:     #1DB954;
  --green-dark:#16923F;
  --green-soft:#E8F7EE;
  --cream:     #F8F6F1;
  --white:     #FFFFFF;
  --gray-100:  #F4F4F6;
  --gray-200:  #E8E9EE;
  --gray-400:  #9CA3AF;
  --gray-600:  #6B7280;
  --gray-800:  #374151;
  --text:      #1A2535;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(11,31,58,.08);
  --shadow-md: 0 8px 32px rgba(11,31,58,.12);
  --shadow-lg: 0 20px 60px rgba(11,31,58,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ─── Reset & Base ─── */
*, *::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.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ─── */
h1,h2,h3,h4,h5 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }

p { line-height: 1.75; color: var(--gray-800); }

/* ─── Layout Utilities ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--gray { background: var(--gray-100); }
.section--navy { background: var(--navy); color: var(--white); }
.section--cream { background: var(--cream); }

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: var(--green-soft);
  border-radius: 100px;
}

.section--navy .section-label {
  background: rgba(29,185,84,.15);
  color: var(--green);
}

.section-title {
  margin-bottom: 16px;
  color: var(--navy);
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 60px;
}

.section--navy .section-subtitle { color: rgba(255,255,255,.65); }

.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,185,84,.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(11,31,58,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
}

.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.nav-link {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.nav-cta {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  background: var(--green);
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(29,185,84,.4);
}

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

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

/* ─── Hero (Home) ─── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(29,185,84,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 60%, rgba(30,58,95,.6) 0%, transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29,185,84,.15);
  border: 1px solid rgba(29,185,84,.3);
  color: var(--green);
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp .8s ease both;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp .8s .1s ease both;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
  position: relative;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 40px;
  max-width: 560px;
  animation: fadeUp .8s .2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp .8s .3s ease both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  margin-top: 72px;
  overflow: hidden;
  animation: fadeUp .8s .4s ease both;
}

.hero-stat {
  background: rgba(11,31,58,.7);
  backdrop-filter: blur(10px);
  padding: 28px 24px;
  text-align: center;
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  font-weight: 400;
}

.hero-visual {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .25;
}

.hero-visual svg {
  width: 100%;
  height: 100%;
}

/* ─── Services Cards ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  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(--green), var(--green-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(29,185,84,.2);
}

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

.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green);
}

.service-card:hover .service-icon svg {
  color: var(--white);
}

.service-icon svg {
  width: 28px; height: 28px;
  color: var(--green);
  transition: var(--transition);
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  font-size: .95rem;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  color: var(--green);
  transition: var(--transition);
}

.service-link:hover { gap: 10px; }

/* ─── Benefits ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(29,185,84,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg { width: 24px; height: 24px; color: var(--green); }

.benefit-item h4 {
  font-family: var(--font-head);
  color: var(--white);
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
}

/* ─── Partners ─── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.partner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

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

.partner-logo {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.partner-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.partner-desc {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.partner-badge {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-soft);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ─── CTA Section ─── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(29,185,84,.08) 0%, transparent 70%);
}

.cta-section .container { position: relative; z-index: 2; }

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin: 32px 0;
  transition: var(--transition);
}

.cta-phone:hover { color: var(--green); }

.cta-phone-icon {
  width: 52px; height: 52px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ring 3s ease infinite;
}

@keyframes ring {
  0%,90%,100% { transform: rotate(0); }
  92% { transform: rotate(-15deg); }
  96% { transform: rotate(15deg); }
}

.cta-phone-icon svg { width: 22px; height: 22px; color: var(--white); }

/* ─── Footer ─── */
.footer {
  background: #070F1E;
  color: rgba(255,255,255,.6);
  padding: 80px 0 40px;
}

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

.footer-brand h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: .85rem; }

.footer-green { color: var(--green); font-family: var(--font-head); font-weight: 700; }

/* ─── Page Header ─── */
.page-header {
  background: var(--navy);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(29,185,84,.1) 0%, transparent 60%);
}

.page-header-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-header .container { position: relative; z-index: 2; }

.page-header h1 { color: var(--white); margin-bottom: 16px; }

.page-header p {
  color: rgba(255,255,255,.6);
  font-size: 1.15rem;
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.breadcrumb a,
.breadcrumb span {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--green); }
.breadcrumb-sep { color: rgba(255,255,255,.25); }
.breadcrumb .current { color: var(--green); }

/* ─── About Page ─── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,185,84,.2) 0%, transparent 60%);
}

.about-card-icon {
  position: absolute;
  top: 40px; right: 40px;
  opacity: .15;
}

.about-card-icon svg { width: 120px; height: 120px; color: var(--green); }

.about-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.about-stat {
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(10px);
}

.about-stat span {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat p {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}

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

.value-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.value-card:hover {
  background: var(--green-soft);
  border-color: rgba(29,185,84,.3);
  transform: translateY(-3px);
}

.value-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(29,185,84,.2);
  line-height: 1;
  margin-bottom: 12px;
}

.value-card h4 {
  font-family: var(--font-head);
  color: var(--navy);
  margin-bottom: 8px;
}

.value-card p { font-size: .9rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  padding: 32px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(29,185,84,.08);
  border-color: rgba(29,185,84,.2);
  transform: translateY(-3px);
}

.why-icon {
  width: 48px; height: 48px;
  background: rgba(29,185,84,.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-icon svg { width: 24px; height: 24px; color: var(--green); }

.why-item h4 {
  font-family: var(--font-head);
  color: var(--white);
  margin-bottom: 10px;
}

.why-item p { font-size: .9rem; color: rgba(255,255,255,.55); }

/* ─── Services Detail Page ─── */
.service-section {
  padding: 100px 0;
}

.service-section:nth-child(even) { background: var(--gray-100); }

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

.service-section:nth-child(even) .service-detail {
  direction: rtl;
}

.service-section:nth-child(even) .service-detail > * {
  direction: ltr;
}

.service-detail-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-detail-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(29,185,84,.15) 0%, transparent 70%);
}

.service-detail-visual svg {
  width: 140px;
  height: 140px;
  color: var(--green);
  opacity: .6;
  position: relative;
  z-index: 2;
}

.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.service-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--gray-800);
}

.service-benefit-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-benefit-icon svg { width: 12px; height: 12px; color: var(--green); }

.service-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 24px;
}

.service-step {
  display: flex;
  gap: 20px;
  position: relative;
}

.service-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 15px;
  top: 34px;
  bottom: -16px;
  width: 2px;
  background: var(--gray-200);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-body { padding-bottom: 28px; }
.step-body h4 { font-family: var(--font-head); color: var(--navy); margin-bottom: 4px; }
.step-body p { font-size: .9rem; }

/* ─── Realizations ─── */
.real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.real-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

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

.real-card-img {
  height: 220px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.real-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,185,84,.2) 0%, rgba(11,31,58,.6) 100%);
}

.real-card-img svg {
  width: 80px; height: 80px;
  color: var(--green);
  opacity: .7;
  position: relative;
  z-index: 2;
}

.real-card-tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 3;
}

.real-card-body { padding: 28px; }

.real-card-body h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.real-card-body p { font-size: .9rem; margin-bottom: 16px; }

.real-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.real-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--gray-600);
  font-family: var(--font-head);
  font-weight: 600;
}

.real-meta-item svg { width: 14px; height: 14px; color: var(--green); }

/* ─── Contact Page ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info { display: flex; flex-direction: column; gap: 32px; }

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

.contact-icon {
  width: 52px; height: 52px;
  background: var(--green-soft);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background: var(--green);
}

.contact-item:hover .contact-icon svg { color: var(--white); }

.contact-icon svg { width: 24px; height: 24px; color: var(--green); transition: var(--transition); }

.contact-item h4 {
  font-family: var(--font-head);
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-item p, .contact-item a {
  font-size: 1.05rem;
  color: var(--gray-800);
  transition: var(--transition);
}

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

.map-placeholder {
  background: var(--navy);
  border-radius: var(--radius-lg);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(29,185,84,.12) 0%, transparent 70%),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px) 0 0 / 40px 40px;
}

.map-placeholder svg {
  width: 60px; height: 60px;
  color: var(--green);
  position: relative;
  z-index: 2;
  opacity: .8;
}

.map-placeholder p {
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  position: relative;
  z-index: 2;
}

.map-placeholder strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 24px;
  background: var(--gray-100);
  border-radius: var(--radius);
  margin-top: 16px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: .9rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--gray-200);
}

.hours-row:last-child { border: none; }
.hours-label { color: var(--gray-600); }
.hours-val { font-weight: 500; color: var(--text); }

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.reveal-delay-5 { transition-delay: .5s; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .real-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  
  .nav-menu { display: none; position: fixed; inset: 72px 0 0; background: var(--navy); flex-direction: column; align-items: stretch; padding: 32px 24px; gap: 4px; }
  .nav-menu.open { display: flex; }
  .nav-hamburger { display: flex; }
  .nav-link { padding: 14px 16px; font-size: 1.1rem; }
  .nav-cta { margin-top: 16px; text-align: center; }
  
  .hero-stats { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-visual { display: none; }
  
  .about-intro,
  .service-detail,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  
  .service-section:nth-child(even) .service-detail { direction: ltr; }
  
  .partners-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .real-grid { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  
  .cta-phone { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .hero-stat-num { font-size: 1.8rem; }
}
