/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e67e22;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #95a5a6;
    --success: #27ae60;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}
img {
    max-width: 100%;
    height: auto;
}
/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

.container {
  width: 100%;
  max-width: 1200px; 
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 120px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: 2rem;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.2s;
}

.nav-link.active,
.nav-link:hover {
    color: var(--accent-color);
}

.phone-btn {
    background: var(--secondary-color);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    padding: 0.7rem 2.2rem;
    text-decoration: none;
    margin-left: 2.5rem;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(44,62,80,0.04);
}

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

.phone {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    display: block;
}

.address {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)), url('https://images.unsplash.com/photo-1556911220-bff31c812dba?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
}

.subheadline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

/* Services section */
.services {
    padding: 100px 0;
    background-color: var(--secondary-color);
}

.services h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h4 {
    padding: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.service-card p {
    padding: 0 1rem 1rem;
    color: var(--gray);
    text-align: center;
}

.service-card .service-cta {
    /* transform: translateY(20px); */
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover .service-cta {
    opacity: 1;
    transform: translateY(0);
}

.service-card .service-cta a {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.service-card .service-cta a:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}
/*  Brands  */
.brands {
    width: 100%;
    padding: 60px 40px;
    background-color: #F8F8F8;
    text-align: center;
}

.brands h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
}
/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    background-color: #d35400;
}

/* Intro section */
.intro {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-block {
    padding: 25px;
    display: flex;
    justify-content: center;
    column-gap: 80px;
    align-items: center;
}

.trust-block img {
    transition: transform 0.3s ease-in-out; 
    max-width: 300px;
    height: auto;
}

.trust-block img:hover {
    transform: scale(1.1); 
}

/* Features section */
.features {
    padding: 4rem 0;
    background-color: var(--white);
}

.features h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.carousel {
    position: relative;
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 700px;
}
.carousel-track {
    display: flex;
    overflow: visible;
    width: 100%;
    min-height: 420px;
    justify-content: center;
}
.carousel-slide {
    min-width: 100%;
    transition: opacity 0.5s, transform 0.5s;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
}
.carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    z-index: 2;
    transform: none;
}
.carousel-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,82,130,0.13);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 600px;
    justify-content: flex-start;
}
.carousel-image {
    width: 100%;
    height: 500px;
    margin: 0 auto 1.2rem auto;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #e2e8f0;
}
.carousel-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    margin-top: 0.7rem;
}
.carousel-desc {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 2.2rem;
    min-height: 60px;
    padding-inline: 10px;
}
.carousel-arrow {
    background: #e3ecfa;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    transition: background 0.2s, color 0.2s;
    opacity: 0.95;
    box-shadow: 0 2px 8px rgba(44,82,130,0.07);
}
.carousel-arrow-left {
    left: -70px;
}
.carousel-arrow-right {
    right: -70px;
}
.carousel-arrow:hover {
    background: var(--primary-color);
    color: #fff;
}
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.2rem;
}
.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #b0c4d4;
    display: inline-block;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.carousel-indicator.active {
    background: #fff;
    border: 2px solid var(--primary-color);
    transform: scale(1.2);
}

/* Specials Section */
.specials {
    padding: 5rem 0;
    /* background: var(--secondary-color); */
    background: #f8f8f8;
}

.specials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.specials h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.special-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.special-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.special-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.special-image i {
    font-size: 3rem;
    color: var(--white);
}

.special-content {
    padding: 2rem;
}

/* .special-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1.1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(230, 126, 34, 0.3);
} */

/* --------------- купон у .special-info-block --------------- */

.coupon-wrapper {
    /* прибрали full‑screen‑центрування */
    display: flex;
    justify-content: center; /* вирівнюємо горизонтально */
    padding: 1rem 0;          /* відступ зверху/знизу */
    background: none;         /* прозорий фон */
}

.coupon {
    background: #d6ecf9;; /* #2c5da4 */
    border: 3px dashed #0a355e;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    text-align: center;
    /* ширина під контент specials */
    max-width: 450px;
    width: 100%;
    color: #0a355e;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin: 0 auto;
}

#coupon-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1em;
    padding: 0;
    margin: 0 0 -10px 0;
    color: #0a355e;
}

#coupon-subtitle {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 10px 0 10px 0px;
    padding: 0;
    color: #0a355e;
}

.coupon p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #0a355e!important;
}

.coupon .business {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0a355e;
}

.coupon .bottom-line {
    font-size: 1.1rem;
    font-weight: 700;
    padding-top: 0.5rem;
    border-top: 2px solid #0a355e;
    color: #0a355e;
}

/* Specials Section - Feature Row Layout */
.specials-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.special-row {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(44,62,80,0.07);
    overflow: hidden;
    border: 1.5px solid var(--light-bg);
    transition: box-shadow 0.2s;
}
.special-row:hover {
    box-shadow: 0 8px 32px rgba(44,62,80,0.13);
}
.special-row.reverse {
    flex-direction: row-reverse;
}

.special-img-block {
    flex: 0 0 500px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    color: var(--gray);
    overflow: hidden;
}

.special-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.special-row:hover .special-img-block img {
    transform: scale(1.05);
}

.special-info-block {
    flex: 1 1 0;
    padding: 2.2rem 2.5rem 2.2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.special-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1.1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(230, 126, 34, 0.3);
}

.special-info-block h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    font-weight: 800;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(44, 62, 80, 0.1);
}

.special-info-block p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.1rem;
    font-weight: 400;
}

.special-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem 0;
}
.special-features li {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
}
.special-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 900;
    font-size: 1.1rem;
}

.special-cta {
    margin-top: 0.5rem;
    text-align: center;
}
.special-cta a {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.8rem 1.6rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(230, 126, 34, 0.3);
}
.special-cta a:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(230, 126, 34, 0.4);
}

@media (min-width: 2560px) {
    .special-img-block {
        flex: 1;
    }    
}

@media (max-width: 900px) {
    .special-info-block {
        padding: 1.5rem 1.2rem;
    }
    .special-img-block {
        min-height: 140px;
        font-size: 2.2rem;
        flex: 0 0 300px;
    }
    .special-img-block img {
        object-position: center;
    }
}
@media (max-width: 700px) {
    .special-row, .special-row.reverse {
        flex-direction: column !important;
    }
    .special-img-block {
        width: 100%;
        min-height: 120px;
        border-radius: 14px 14px 0 0;
        flex: none;
    }
    .special-img-block img {
        border-radius: 14px 14px 0 0;
    }
    .special-info-block {
        padding: 1.2rem 1rem;
    }
}


/* About section */
.about {
    padding: 4rem 0;
    background-color: var(--white);
}

.about h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(44,82,130,0.10);
    padding: 2.5rem;
    margin-top: 2rem;
}

.about-img {
    /* width: 320px; */
    flex: 1;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(44,62,80,0.10);
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-subheading {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.about-list li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.about-list i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.about-quote {
    font-style: italic;
    color: #666;
    margin: 1.5rem 0 0.5rem 0;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.about-signature {
    font-family: 'Roboto', cursive;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* Contact section */
.contact {
    padding: 4rem 0;
    background-color: var(--secondary-color);
}

.contact h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
}

.submit-button:hover {
    background-color: #d35400;
}

.contact-info-details {
    display: grid;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.info-item p {
    font-size: 25px;
}

.info-item i {
    color: var(--accent-color);
    font-size: 2rem;
}

/* Map section */
.map-section {
    width: 100%;
    height: 60vh;
    padding: 0;
    margin: 0;
    background: none;
    position: relative;
    overflow: hidden;
}

.map {
    display: block;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    border: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Service area section */
.service-area {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.service-area h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-area p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    border-bottom: 2px solid #3B70BB;
    padding-bottom: 3px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
}



/* Responsive design */
@media (max-width: 768px) {
    .nav-links {
        margin-top: 1rem;
    }

    .nav-links a {
        margin: 0 1rem;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }

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

    .subheadline {
        font-size: 1.2rem;
    }
    .about-content{
        flex-direction: column;
        text-align: center;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .trust-block {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 20px;
    }    
    .trust-block img {
        min-width: 80px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.5rem;
    }

    .subheadline {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .nav-links a {
        margin: 0 0.5rem;
    }
}

@media (max-width: 600px) {
    .carousel-arrow-left {
        left: 10px;
    }
    .carousel-arrow-right {
        right: 10px;
    }
    .carousel {
        padding: 0 1rem; /* щоб додати простір усередині */
    }
    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
}


@media (max-width: 900px) {
    .nav-links {
        margin-left: 0;
        gap: 1.2rem;
    }
    .phone-btn {
        margin-left: 0;
        width: 100%;
    }
    #mobile-menu {
        position: fixed;
        top: 64px;
        right: 0;
        left: auto;
        max-width: 320px;
        width: 90vw;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 0;
        box-shadow: 0 2px 16px rgba(44,62,80,0.12);
        background: #fff;
        z-index: 1102;
        display: flex;
        flex-direction: column;
        padding: 1.5rem 0 1rem 0;
        gap: 1.2rem;
        animation: slideDown 0.25s;
    }
}

/* Responsive Navbar Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #2c3e50;
    cursor: pointer;
    margin-left: auto;
    z-index: 1101;
}

#mobile-menu {
    display: none;
}

@media (max-width: 900px) {
    .nav-links,
    #desktop-phone {
        display: none !important;
    }
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .navbar {
        position: fixed;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 1100;
    }
    .nav-content {
        width: 100%;
    }
    .logo-block {
        flex: 1 1 auto;
    }
    #mobile-menu {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        background: #fff;
        box-shadow: 0 2px 8px rgba(44,62,80,0.08);
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        padding: 1.5rem 0 1rem 0;
        gap: 1.2rem;
        z-index: 1102;
        animation: slideDown 0.25s;
    }
    #mobile-menu .nav-link {
        color: #2c3e50;
        font-size: 1.2rem;
        font-weight: 500;
        padding: 0.5rem 2rem;
    }
    #mobile-menu .nav-link:hover {
        color: #e67e22;
        background: #f8f9fa;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
