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

/* Montserrat 400 */
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/montserrat-v31-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Montserrat 600 */
@font-face {
  font-family: "Montserrat";
  src: url("../assets/fonts/montserrat-v31-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Playfair Display 400 */
@font-face {
  font-family: "Playfair Display";
  src: url("../assets/fonts/playfair-display-v40-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


:root {
  --primary-color: #1a1a1a;
  --accent-color: #4a7c59;
  --blue-fill: #e3f2fd;
  --green-fill: #4A5B29;
  --text-color: #333;
  --white: #ffffff;
  --light-bg: #f9f9f9;
  --border-radius: 12px;
  --section-vertical: clamp(40px, 8vw, 80px);
  --max-width: 1300px;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

#page-content {
  position: relative;
}

.intro-section {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.intro-nav {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 80;
  pointer-events: none;

  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 1s ease, transform 1s ease;
}

/* reveal */
body.loaded .intro-nav {
  opacity: 1;
  transform: translateY(0);
}

.nav-inner {
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  pointer-events: auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.nav-logo-line {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  display: inline-block;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  content: "";
  transition: transform .25s ease, opacity .2s ease;
}

.hamburger::before {
  transform: translateY(-7px);
}

.hamburger::after {
  transform: translateY(5px);
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a.btn-cta {
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 6px;
}

.intro-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  transform: scale(1.1);
  will-change: transform;
  transform-origin: center;
}

.intro-media img {
  width: 100%;
  height: 110vh;
  object-fit: cover;
  display: block;
}

.intro-overlays {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* gradient controlled by JS */
.intro-gradient {
  position: absolute;
  inset: 0;
  /* default initial overlay (same as scroll start state) */
  background: linear-gradient(
    to bottom,
    rgba(10,18,10,0.3) 0%,
    rgba(10,18,10,0.24) 40%,
    rgba(10,18,10,0.42) 70%,
    rgba(10,18,10,0.6) 100%
  );

  transition: background 0.3s ease; /* smooth change */
}

/* vignette same as React */
.intro-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(10,18,10,0.4) 100%
  );
}

/* hero content */
.intro-inner {
  position: relative;
  z-index: 4;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-decor .line {
  width: 64px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 22px;
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0;
  transition: transform .9s cubic-bezier(.2, .9, .2, 1), opacity .6s;
}

body.loaded .intro-decor .line {
  transform: scaleX(1);
  opacity: 1;
}

.intro-title {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(40px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: 0.025em;
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .7s ease, transform .7s ease;
}

body.loaded .intro-title {
  opacity: 1;
  transform: translateY(0);
}

.intro-para {
  font-size: clamp(0.8rem, 1.2vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-bottom: 0.75rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .6s ease .12s, transform .6s ease .12s;
}

body.loaded .intro-para {
  opacity: 0.95;
  transform: translateY(0);
}

.intro-cta {
  margin-top: 40px;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 4px; /* 🔥 tighter spacing like React */
  text-decoration: none;
  color: #fff;

  opacity: 0;
  transform: translateY(24px);

  transition:
    opacity .9s cubic-bezier(.16,1,.3,1) 0.9s,
    transform .9s cubic-bezier(.16,1,.3,1) 0.9s;
}

body.loaded .intro-cta {
  opacity: 1;
  transform: translateY(0);
}

.discover-text {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);

  transition: color .3s ease;
}

.intro-cta:hover .discover-text {
  color: #fff;
}

.discover-chevron {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 22px;
  height: 22px;

  animation: discoverFloat 1.8s cubic-bezier(.4,0,.2,1) infinite;
}

.discover-chevron svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes discoverFloat {
  0%, 100% {
    transform: translateY(0);
    opacity: .7;
  }
  50% {
    transform: translateY(12px);
    opacity: 1;
  }
}

.intro-scroll-indicator {
  position: absolute;
  bottom: 48px;
  left: 42px;
  z-index: 10;

  display: flex;
  align-items: center;
  gap: 12px;

  transform: rotate(-90deg) translateY(20px);
  transform-origin: left bottom;

  opacity: 0;
  transition: all 0.8s ease 1s;
}

body.loaded .intro-scroll-indicator {
  opacity: 1;
  transform: rotate(-90deg) translateY(0);
}

.intro-scroll-indicator__line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.35);
}


.intro-scroll-indicator__text {
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }

  100% {
    transform: translateY(0);
  }
}

/* responsive */
@media (max-width:768px) {
  .nav-links {
    position: fixed;
    inset: 72px 20px auto 20px;
    background: rgba(4, 8, 6, 0.95);
    padding: 18px;
    border-radius: 12px;
    flex-direction: column;
    display: none;
    z-index: 90;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .intro-title {
    font-size: clamp(28px, 10vw, 56px);
  }
}


/* --- ОБЩИ СТИЛОВЕ ЗА ЗАГЛАВИЯ --- */
.section-title {
  text-align: left;
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 2.2rem;
  /* По-тънък и елегантен шрифт */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background-color: #4a6741;
  margin-top: 15px;
}

/* ===== FLOATING GLASS CTA ===== */

/* 1. The Wrapper handles the positioning and "Zero Height" logic */
#cta-wrapper {
  position: -webkit-sticky;
  position: sticky;

  top: calc(100vh - 20px);
  transform: translateY(-70px);

  mix-blend-mode: difference;
  height: 0;
  display: flex;
  justify-content: flex-end;
  z-index: 100;
  overflow: visible;
  pointer-events: none;
}

#cta {
  /* Re-enable clicks on the button itself */
  pointer-events: auto;

  /* Visual Styling */
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 20px;
  /* Distance from right edge */
  padding: 24px 18px;

  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  border-radius: 50px;

  color: white;
  /* mix-blend-mode: difference; */
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.3s ease;

  /* animation states */
  opacity: 0;
  transform: translateY(20px) scale(.95);

  animation: revealCTA 200ms ease forwards;
  animation-delay: 150ms;
}

/* hover */
#cta:hover {
  transform: translateY(-3px) scale(1.03);
  background: rgba(255, 255, 255, 0.15);
}

/* icon */
.cta-icon {
  width: 18px;
  height: 18px;
  display: none;
}

.cta-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes revealCTA {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Footer */
.site-footer {
  background: var(--primary-color);
  padding: 3rem 1rem;
  font-size: 0.85rem;
  text-align: center;
  color: #d1d5db;
}

.footer-container {
  max-width: 1152px;
  margin: 0 auto;
}

.footer-container>*+* {
  margin-top: 2rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-icon {
  color: inherit;
  transition: color 0.3s ease;
}

.footer-icon:hover {
  color: #fff;
}

.footer-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;

  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #60a5fa;
}

.footer-divider {
  display: block;
  color: #4b5563;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(31, 41, 55, 0.5);
}

@media (max-width: 768px) {
  .container {
    max-width: 768px;
  }

  #cta {
    padding: 18px 18px;
    font-size: 12px;
  }

  .cta-icon {
    display: block;
  }

  .cta-label {
    display: none;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .footer-contact {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-divider {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    max-width: 100%;
  }

  .section-title {
    font-size: 1.25rem;
  }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0 !important;
    transition-duration: 0 !important;
    scroll-behavior: auto !important;
  }
}



/* ----------------------------------- */
/* ####### MasterPlan Section ######## */
/* ___________________________________ */


#master-plan{
    padding-bottom: var(--section-vertical);
    background-color: var(--light-bg);
}

/* The floating window style */
#house-tooltip {
    position: fixed;
    padding: 10px 15px;
    background: rgba(26, 26, 26, 0.95);
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    pointer-events: none;
    /* Crucial: mouse ignores the tooltip */
    display: none;
    /* Hidden by default */
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--accent-color);
}

/* The label inside the window */
.tooltip-label {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.tooltip-sqm {
    color: #ccc;
    font-size: 11px;
}

.masterplan-wrapper{
    background-color: var(--green-fill);
}

/* Map Container */
.masterplan-container {
    position: relative;
    max-width: 80vw;
    margin: 0px auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* The Image */
#base-image {
    width: 100%;
    display: block;
}

/* SVG Overlay for perfect shapes */
.svg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* House Shapes */
.house-polygon {
  /* Transparent Green */
    fill: rgba(255, 255, 255, 0.0);
    stroke-width: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Glow effect for the house on the map */
.house-polygon:hover {
    fill: rgba(74, 124, 89, 0.5) !important;
    stroke: #fff;
    stroke-width: 2px;
}

.sold:hover {
    fill: rgba(255, 0, 0, 0.2) !important;
}

.master-title{
    z-index: 2;
    text-align: center;
    color: var(--white);
    background: rgba(44, 74, 59, 0.9);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    text-wrap-mode: nowrap;
}

.master-title h2{
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin: 0;
}

#house-info {
    margin: 80px auto;
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    pointer-events: none;
}

#house-info.active {
    pointer-events: auto;
}

.status-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    background: #e8f5e9;
    color: var(--accent-color);
}

#h-title{
    margin: 10px 0;
}

.house-details {
  display: flex;
  gap: 50px;
  margin-top: 20px;
}

.detail-label {
  color: #888;
}

.detail-value {
  font-size: 1.2rem;
  font-weight: bold;
}

.btn-contact {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.btn-contact:hover {
    background: var(--accent-color);
}

#h-image-container {
  background: #eee;
  border-radius: 8px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

/* Tablets & below */
@media (max-width: 1024px) {
    #house-info {
        gap: 24px;
        padding: 24px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .master-title h2 {
        font-size: 1.2rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    #house-info {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .masterplan-container{
      max-width: 100vw;
    }

    .master-title{
      padding: 5px 20px;
      transform: translate(-50%, 115%);
    }
    
    .master-title h2{
      font-size: 1.5rem;
    }
    
    #h-title{
      font-size: 1.3rem;
    }
}




/* ----------------------------------- */
/* ######### location Section ######## */
/* ___________________________________ */


/* --- 1. HERO SECTION --- */
.hero {
    position: relative;
    height: 80vh;
    width: 100%;
    background-color: var(--blue-fill);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-content {
    margin-bottom: 40px;
    z-index: 2;
    text-align: center;
    color: var(--white);
    background: rgba(44, 74, 59, 0.9);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero h2 {
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin: 0;
}

/* --- 2. MID SECTION (AMENITIES) --- */
.amenities-section {
    padding: 80px 0;
}

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

.card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    /* JS Animation init */
    transform: translateY(20px);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-icon {
    font-size: 1.5rem;
}

.card-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.card-body {
    padding: 20px;
    flex-grow: 1;
}

.location-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.location-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.location-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
}

.location-details {
    font-size: 0.9rem;
    color: #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.map-link {
    font-size: 0.75rem;
    color: var(--white);
    background-color: var(--accent-color);
    padding: 4px 10px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s;
}

.map-link:hover {
    background-color: var(--primary-color);
}

/* --- 3. BOTTOM SECTION (TABLE) --- */
.distances-section {
    padding: 80px 0;
}

.table-container {
    overflow-x: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: var(--border-radius);
}

.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #2c4a3b;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 600px;
}

th,
td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: #f0f4f1;
}

.time-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

.standard-time {
    color: var(--primary-color);
    background: #e8f5e9;
}

.peak-time {
    color: #c62828;
    background: #ffebee;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
        background-image: url('../assets/images/location-1200.webp');
    }

    .hero-content {
        padding: 5px 20px;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

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

    th,
    td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }

    .time-badge {
        font-size: 0.75rem;
        padding: 3px 6px;
    }

    table{
        min-width: 480px;
    }
}

@media (min-width: 769px) {
  .hero{
    background-image: url('../assets/images/location.webp');
  }
}

/* The wrapper that detects the hover */
.map-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* The Button styling */
.trigger-btn {
    background: #5D5DFF;
    /* Blue */
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
}

/* THE BUBBLE - Hidden by default */
.map-bubble {
    display: none;
    /* Forced hide */
    position: absolute;
    bottom: 70px;
    /* Sits above the button */
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    background: #E0D4FF;
    /* Light Purple Asphalt */
    border: 4px solid #5D5DFF;
    /* Blue Road color */
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

/* THE MAGIC: Show bubble when wrapper is hovered */
.map-wrapper:hover .map-bubble {
    display: block !important;
}

/* The Pointer Arrow */
.map-bubble::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: #E0D4FF transparent transparent transparent;
}

.map-bubble img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

.caption {
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
    color: var(--text-color);
}



/* ----------------------------------- */
/* ########## About Section ########## */
/* ___________________________________ */

.about-wrapper{
    padding-top: var(--section-vertical);
    padding-bottom: var(--section-vertical);
    background: var(--light-bg);
}

/* --- СЕКЦИЯ ИНФО --- */
.project-section {
    margin-bottom: 80px;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 50px;
}

.text-content {
    flex: 1;
    min-width: 320px;
}

.description {
    font-size: 1.05rem;
    margin-bottom: 30px;
    text-align: justify;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4a6741;
    font-size: 1.5rem;
    line-height: 1;
}

.image-content {
    flex: 1;
    min-width: 320px;
}

.project-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    box-shadow: 10px 10px 0px #f0f0f0;
    /* Декоративна сянка */
}

.solution-wrapper{
    padding: var(--section-vertical) 0;
    background-color: var(--light-bg);
}

/* --- СЕКЦИЯ СТРОИТЕЛНИ РЕШЕНИЯ --- */
.solutions-section {
    margin-top: 40px;
    margin-bottom: 40px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 5 колони като на снимката */
    gap: 40px 25px;
    margin-top: 40px;
}

.solution-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
    /* Използваме същия стил като списъка */
}

.solution-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Адаптивност за малки екрани */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

/* FAQ SECTION */

.faq-section{
  padding: var(--section-vertical) 0;
  background: var(--white);
}

.faq-container{
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-item{
  border-bottom: 1px solid #eee;
}

.faq-question{
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-icon{
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

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

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p{
  padding-bottom: 20px;
  color: #555;
  line-height: 1.6;
}