
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: #f9f9f9;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.hero {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://kskhouse.com.ua/wp-content/uploads/2021/11/dubliks-6.jpg")
      center/cover no-repeat;
}

.hero-subtext {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 5px;
    display: block;
}


.hero-subtext.bold {
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-company {
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 5rem);
  text-transform: uppercase;
}
.gallery {
  padding: 60px 0;
}
.img-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  list-style: none;
}
.img-item {
  overflow: hidden;
  border-radius: 12px;
  height: 350px;
}
.img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.img-item:hover img {
  transform: scale(1.1);
}


.slider-section {
  padding-bottom: 80px;
}

.slider-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    background: transparent; 
    line-height: 0;
}


.slider-overlay {
    position: absolute;
    top: 40px;  
    left: 40px;
    z-index: 10; 
    pointer-events: none; 
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 30px; 
    color: #333;
    text-align: center;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
    line-height: 0;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide-item {
    flex: 0 0 100%;
    height: 500px;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.7);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: 0.3s;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 1);
}
.prev-btn {
  left: 20px;
}
.next-btn {
  right: 20px;
}


.dots-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 25px 0;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #000;
  transform: scale(1.2);
}



.advantages-section {
    padding: 80px 0;
    background: linear-gradient(to right, #fdf0e8 0%, #fff 18%, #fff 82%, #fdf0e8 100%);
}

.advantages-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.adv-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.advantages-list {
    list-style: none;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px 32px;
    background: #fafafa;
    border-radius: 16px;
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.advantage-item:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    transform: translateY(-3px);
}

.advantage-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8874a, #d4602a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(212, 96, 42, 0.35);
}

.advantage-icon svg {
    width: 20px;
    height: 20px;
}

.advantage-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.3px;
    text-align: left;
    padding-top: 0;
}

.advantage-text strong {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.3px;
}

.advantage-text span {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    line-height: 1.5;
}

.adv-deco {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 360px;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.adv-deco-block {
    border-radius: 14px;
}

.adv-deco-block:nth-child(1) {
    background: linear-gradient(135deg, #f5a26b, #e8874a);
    grid-column: 1 / 3;
}

.adv-deco-block:nth-child(2) {
    background: linear-gradient(135deg, #f0e6dc, #e8c9b0);
}

.adv-deco-block:nth-child(3) {
    background: linear-gradient(135deg, #d4602a, #a8441a);
}


.why-us-section {
    padding: 90px 0;
    background: #f5f2ee;
}

.why-us-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.why-us-eyebrow {
    text-align: center;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #e8874a;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: #ddd8d0;
    margin-top: 56px;
}

.why-us-item {
    background: #f5f2ee;
    padding: 56px 48px;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    transition: background 0.25s ease;
}
.why-us-item:hover {
    background: #eee9e1;
}

.why-us-number {
    font-size: 4rem;
    font-weight: 900;
    color: #e8874a;
    line-height: 1;
    min-width: 64px;
    flex-shrink: 0;
}


.why-us-body strong {
    display: block;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-us-body p {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

.about-section {
    padding: 80px 0;
    background: #f9f6f2;
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 48px;
}

.about-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 36px 32px;
    border: 1px solid #f0ebe4;
    transition: box-shadow 0.3s ease;
}

.about-card:hover {
    box-shadow: 0 10px 36px rgba(0,0,0,0.07);
}

.about-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8874a, #d4602a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(212, 96, 42, 0.3);
}

.about-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.about-card > p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-card > p strong {
    color: #1a1a1a;
    font-weight: 700;
}

.about-nearby {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-nearby li {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.55;
    padding-left: 16px;
    position: relative;
}

.about-nearby li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e8874a;
}

.about-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.about-spec {
    background: #fdf5ef;
    border-radius: 12px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-spec-val {
    font-size: 1.6rem;
    font-weight: 900;
    color: #e8874a;
    line-height: 1;
}

.about-spec-label {
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.about-specs-note {
    font-size: 0.82rem;
    color: #aaa;
    font-style: italic;
    line-height: 1.6;
    border-top: 1px solid #f0ebe4;
    padding-top: 18px;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}


.footer {
    background: #1a1a1a;
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
}

.footer-contacts {
    display: flex;
    gap: 32px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #e8874a;
}


@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}