/* Глобальні стилі */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    overflow: hidden;
    position: relative;
}

h1, h2, h3 {
    margin-bottom: 20px;
    color: #222;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

section {
    padding: 60px 0;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #FFB949;
    color: #fff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

.btnkons {
    display: inline-block;
    padding: 12px 25px;
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

.btn:hover {
    background-color: #F0990E;
}

.btnkons:hover {
    background-color: #666;
}

/* Модальні вікна */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1000;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
}

.modal__content {
    position: relative;
    max-width: 600px;
    width: 90%;
    margin: 5% auto;
    padding: 30px 40px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
	z-index: 1002;
}

.modal__content p {
    margin: 0 0 50px;
    font-size: 1.2rem;
    color: #000;
    line-height: 1;
    text-align: center;
}

.modal__content h2 {
    margin-top: 0;
    margin-bottom: 0px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.modal__close {
    position: absolute;
    top: 10px; right: 10px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal.active {
    display: block;
}

body.modal-open {
    overflow: hidden;
}

.modal.active .modal__overlay {
    animation: fadeInOverlay 0.3s forwards;
}

.modal.active .modal__content {
    animation: fadeInContent 0.3s forwards;
}

@keyframes fadeInOverlay {
    from { background: rgba(0,0,0,0); }
    to   { background: rgba(0,0,0,0.8); }
}

@keyframes fadeInContent {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Форма консультації */
.hero-logo-form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.form-group-f {
    margin-bottom: 20px;
}

#consult-form label {
    display: block;
    margin-bottom: 2px;
    font-size: 0.95rem;
    font-weight: bold;
}

#consult-form input {
    width: 100%;
    padding: 12px 15px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

#consult-form input:focus {
    outline: none;
    border-color: #FFB949;
}

#consult-form .btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    margin-top: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 8px;
    background-color: #FFB949;
    transition: background-color 0.3s, transform 0.2s;
}

#consult-form .btn:hover {
    background-color: #F0990E;
    transform: translateY(-2px);
}

/* Форма розрахунку */
.lead-form {
    margin-bottom: 24px;
    position: relative;
}

.lead-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 900;
    color: #333;
    font-size: 0.95rem;
    text-align: center;
}

.lead-form select {
    width: 100%;
    padding: 14px 15px;
    margin-top: 5px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    cursor: pointer;
}

.lead-form select:focus {
    outline: none;
    border-color: #FFB949;
    box-shadow: 0 0 0 3px rgba(255, 185, 73, 0.2);
}

.lead-form select:hover {
    border-color: #b3b3b3;
}

.lead-form option[value="Військовим"] {
    font-weight: 600;
    color: #d9534f;
}

.lead-form option[value="граніт"],
.lead-form option[value="габро"] {
    font-weight: 600;
}

/* Хедер */
header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    white-space: nowrap;
}

.hero-logo-heder{
    margin-bottom: 0px;
}

.logo-img-heder {
    max-width: 150px;
    height: auto;
    display: block;
}

.contact-number {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

nav {
    background-color: #141A26;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 15px 0;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 2;
    justify-content: center;
}

.nav-menu a {
    color: #FFFFFF;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #FFB949;
}

.nav-menu a.active {
    font-weight: 700;
    border-bottom: 2px solid #FFB949;
    padding-bottom: 2px;
}

/* Герой секція */
.hero {
    background-color: #F2F2F2;
    color: #fff;
    padding: 80px 0 100px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 30px;
}

.logo-img {
    max-width: 200px;
    height: auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #828282;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: #828282;
    font-weight: 700;
}

.hero-center-image {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.kruk-img {
    max-width: 550px;
    height: auto;
}

.hero-buttons-row {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.our-buttons-row {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    justify-content: center;
}

/* Категорії пам'ятників */
.categories {
    text-align: center;
    padding: 65px 0;
    background-color: #fff;
}

.categories h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #28325D;
    text-transform: uppercase;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.category-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    cursor: pointer;
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    color: white;
    text-align: center;
}

.category-title span {
    display: block;
    font-weight: 700;
    line-height: 1.2;
}

.category-title span:first-child {
    font-size: 16px;
    margin-bottom: 5px;
    color: #FFB949;
}

.category-title span:last-child {
    font-size: 20px;
}

/* Наші роботи - слайдер */
.our-works {
    padding: 65px 0;
    background: #f8f8f8;
    text-align: center;
}

.our-works h2 {
    font-size: 32px;
    font-weight: 700;
    color: #28325D;
    text-align: center;
    margin-bottom: 40px;
}

.works-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-wrapper {
    overflow: hidden;
    margin: 0 50px;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    flex: 0 0 25%;
    padding: 0 10px;
    box-sizing: border-box;
    height: 300px;
}

.slide img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    cursor: pointer;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.slider-button:hover {
    background: rgba(255, 185, 73, 0.9);
}

.prev-button { 
    left: 10px; 
}

.next-button { 
    right: 10px; 
}

.slider-dots {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #A3A3A3;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #FFB949;
}

/* Етапи роботи */
.work-steps {
    background-color: #fff;
    padding: 65px 0;
}

.work-steps h2 {
    font-size: 32px;
    font-weight: 700;
    color: #28325D;
    text-align: center;
    margin-bottom: 60px;
}

.steps-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    background-color: #ffffff;
    padding: 40px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 320px;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #FFB949;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number span {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #28325D;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-card p {
    font-size: 15px;
    color: #000;
    line-height: 1.5;
}

/* Як замовити пам'ятник */
.how-to-order {
    padding: 65px 0;
    background-color: #fff;
}

.how-to-order h2 {
    font-size: 32px;
    font-weight: 700;
    color: #28325D;
    text-align: center;
    margin-bottom: 25px;
}

.how-to-order p {
    margin-top: 0;
    margin-bottom: 50px;
    text-align: center;
}

.order-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 40px;
}

.order-step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-image {
    flex: 0 0 auto;
    width: 260px;
    height: 260px;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.step-content {
    flex: 1;
    text-align: left;
    align-self: flex-start;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #28325D;
    margin-bottom: 3px;
}

.step-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    text-align: left;
}

/* 3D моделі */
.models-section {
    background-color: #f8f8f8;
    padding: 65px 0;
}

.models-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #28325D;
    text-align: center;
    margin-bottom: 50px;
}

.models-section p {
    margin-top: 0;
    margin-bottom: 120px;
    text-align: center;
}

.models-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.models-text {
    flex: 1;
    text-align: center;
}

.models-visual {
    flex: 1;
    background-color: #ddd;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

/* Про компанію */
.about-section {
    background-color: #fff;
    padding: 80px 0;
}

.about-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #28325D;
    text-align: center;
    margin-bottom: 65px;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.about-text {
    flex: 1;
    text-align: left;
}

.about-text p {
    margin: 0 0 20px 0;
    font-size: 15px;
    color: #28325D;
    line-height: 1.6;
}

.about-text ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.about-text li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #28325D;
    line-height: 1.6;
}

.about-image {
    flex: 0 0 auto;
    max-width: 500px;
    order: -1;
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* FAQ */
.faq-section {
    background-color: #f8f8f8;
    padding: 65px 0;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #28325D;
    text-align: left;
    margin-bottom: 15px;
}

.faq-list {
    margin-top: 0px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 15px;
    color: #666;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Футер */
footer {
    background-color: #141A26;
    color: #fff;
    padding: 60px 0 30px;
    width: 100%;
}

.footer-logo {
    margin-bottom: 0px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    text-align: left;
}

.contacts-column {
    grid-column: 4;
}

.footer-content > .footer-column:nth-child(2) {
    justify-self: center;
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    text-align: left;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #e67e22;
}

.footer-links {
    list-style: none;
    text-align: left;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #e67e22;
}

.footer-links a i {
    margin-right: 8px;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #ccc;
    font-size: 20px;
}

.copyright-symbol {
    font-size: 18px;
    margin-left: 2px;
}

.description {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

.double-column-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.messenger-title {
    margin-top:25px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2c3e50;
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.footer-photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.photo-placeholder {
    background: linear-gradient(45deg, #2c3e50, #34495e);
    border-radius: 8px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 12px;
    text-align: center;
    padding: 10px;
}

/* Бургер-меню */
.burger {
    display: none;
}

.burger-overlay {
    position: fixed;
    top: 330px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 998;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.burger-overlay.active {
    display: block;
    opacity: 1;
}

/* Модальне вікно для зображень */
.image-modal-content {
  max-width: 30%;
  max-height: 90vh;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5vh auto;
  z-index: 1001;
}

.modal_close-img {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1002;
    color: white;
}

.modal-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  z-index: 1000;
}

#image-modal .modal__close {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 1002;
}

/* Анімація для появи зображення */
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal.active .image-modal-content {
  animation: zoomIn 0.3s forwards;
}

#lead-modal .modal__content {
  max-height: 85vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

#lead-modal .modal__form {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

#lead-modal .lead-form {
  margin-bottom: 15px;
}

#lead-modal .form-group-f {
  margin-bottom: 15px;
}

#lead-modal .btn--primary {
  margin-top: auto; /* Прижимає кнопку до низу */
  margin-bottom: 10px;
}

/* Стилі для форми розрахунку - аналогічні формі консультації */
#lead-form .form-group-f {
    margin-bottom: 20px;
}

#lead-form .form-group-f label {
    display: block;
    margin-bottom: 2px;
    font-size: 0.95rem;
    font-weight: bold;
}

#lead-form .form-group-f input {
    width: 100%;
    padding: 12px 15px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

#lead-form .form-group-f input:focus {
    outline: none;
    border-color: #FFB949;
}

#lead-form .btn--primary {
    display: block;
    width: 100%;
    padding: 14px 0;
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 8px;
    background-color: #FFB949;
    transition: background-color 0.3s, transform 0.2s;
}

#lead-form .btn--primary:hover {
    background-color: #F0990E;
    transform: translateY(-2px);
}

/* Заголовки для форми розрахунку */
#lead-modal .modal__title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

#lead-modal .modal__subtitle {
    margin: 0 0 30px;
    font-size: 1.2rem;
    color: #000;
    line-height: 1;
    text-align: center;
}

/* Адаптивність */
@media (max-width: 992px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 36px;
    }

    .kruk-img {
        max-width: 400px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide {
        flex: 0 0 33.333%;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-image {
        max-width: 100%;
        order: 0;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 40px 0;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-buttons-row {
        flex-direction: column;
        align-items: center;
    }

    .hero-center-image {
        position: static;
        transform: none;
        margin-top: 20px;
    }

    .kruk-img {
        max-width: 300px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .slide {
        flex: 0 0 100%;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .order-step {
        flex-direction: column;
        text-align: center;
    }

    .step-image {
        width: 200px;
        height: 200px;
    }

    .step-content {
        text-align: center;
    }

    .step-content p {
        text-align: center;
    }

    .models-content {
        flex-direction: column;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .logo-column {
        order: 1;
    }

    .contacts-column {
        order: 2;
    }

    .categories-column {
        order: 3;
    }

    .footer-column {
        width: 100%;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .contacts-column h3 {
        margin-bottom: 15px;
    }

    .social-icons {
        justify-content: center;
        margin-top: 15px;
    }

    .messenger-title {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links li {
        justify-content: center;
    }

    .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        cursor: pointer;
        z-index: 1000;
        position: relative;
        order: 2;
        margin: 0 10px;
    }

    .burger span {
        display: block;
        height: 3px;
        width: 100%;
        background: #fff;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    .burger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger.open span:nth-child(2) {
        opacity: 0;
    }

    .burger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        max-height: 0;
        background: #141A26;
        padding: 0;
        gap: 0;
        text-align: center;
        z-index: 999;
        overflow-y: auto;
        transition: max-height 0.3s ease, padding 0.3s ease, gap 0.3s ease;
    }

    .nav-menu.active {
        max-height: calc(100vh - 60px);
        padding: 15px 0;
        gap: 10px;
        transform: translateY(0);
    }

    .contact-number {
        order: 3;
        flex: 0 1 auto;
        text-align: right;
        font-size: 14px;
    }

    .nav-bar {
        justify-content: space-between;
        padding: 15px 20px;
    }

    .hero-logo-heder {
        order: 1;
        flex: 0 1 auto;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        display: inline-block;
        padding: 8px 0;
        font-size: 16px;
    }

    .nav-menu a.active {
        font-weight: 700;
        border-bottom: 2px solid #FFB949;
        padding-bottom: 2px;
    }
	
    .image-modal-content {
        max-width: 70%;
		  max-height: 90vh;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5vh auto;
  z-index: 1006;
    }
  #lead-modal .modal__content {
    max-height: 95vh;
    padding: 20px;
  }
  
  #lead-modal .hero-logo-form {
    margin-bottom: 15px;
  }
  
  #lead-modal .modal__title {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
  
  #lead-modal .modal__subtitle {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  #lead-modal .lead-form {
    margin-bottom: 10px;
  }
  
  #lead-modal .lead-form label {
    font-size: 0.85rem;
    margin-bottom: 5px;
  }
  
  #lead-modal .lead-form select,
  #lead-modal .form-group-f input {
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 22px;
    }

    .slide {
        flex: 0 0 100%;
    }

    .kruk-img {
        max-width: 220px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 14px;
    }
}