:root {
    --primary-color: #2c3e50; /* Dark blue/slate */
    --accent-color: #e67e22; /* Burnt orange for buttons/highlights */
    --text-color: #333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --font-family: 'Manrope', sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: #1a252f;
    height: auto;
    padding: 80px 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 60% 40%, rgba(230, 126, 34, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 20% 80%, rgba(44, 62, 80, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

/* Slideshow */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideshow 20s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 5s; }
.slide:nth-child(3) { animation-delay: 10s; }
.slide:nth-child(4) { animation-delay: 15s; }

@keyframes slideshow {
    0%   { opacity: 0; }
    5%   { opacity: 1; }
    25%  { opacity: 1; }
    30%  { opacity: 0; }
    100% { opacity: 0; }
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 50px;
    text-align: left;
    margin-left: 13vw;
}

.contact-hero {
    min-height: 40vh;
    padding: 100px 20px 60px;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.contact-hero-content h1 {
    font: normal 300 clamp(1.75rem, -0.3125rem + 4.2969vw, 3.125rem) / 1.4 Manrope, sans-serif;
    letter-spacing: 1px;
}

.hero-logo-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 30px;
    z-index: 2;
}

.hero-logo {
    height: 44px;
}

.hero-photo {
    align-self: flex-end;
    margin-bottom: -1px;
}

.hero-photo img {
    width: 280px;
    height: auto;
    display: block;
    flex-shrink: 0;
}

.hero-text {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    pointer-events: none;
}

.hero-text h1,
.hero-text p {
    pointer-events: auto;
}

.hero h1,
.hero-text .hero-line {
    font: normal 300 clamp(1.75rem, -0.3125rem + 4.2969vw, 3.125rem) / 1.4 Manrope, sans-serif;
    letter-spacing: 1px;
    text-transform: none;
    margin-bottom: 6px;
}

.hero-phone-link {
    color: inherit;
    text-decoration: none;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Intro Section */
.intro {
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 31px;
}

.intro-text, .intro-image {
    flex: 1 1 400px;
    max-width: 720px;
}

.intro-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    padding: 20px 32px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}

.badge-rating {
    font-size: 1.9rem;
    font-weight: 700;
    color: #1a1a1a;
}

.badge-star {
    color: #f1c40f;
}

.badge-count {
    font-size: 1rem;
    color: #555;
}

@media (min-width: 769px) {
    .intro-badge {
        position: fixed;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        z-index: 50;
    }
}

.intro h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin-bottom: 25px;
}

.intro p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.intro h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.intro ul {
    margin: 0 0 20px 0;
    padding-left: 22px;
}

.intro ul li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-image img {
    width: 320px;
    height: 380px;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12), 0 24px 48px rgba(0,0,0,0.10);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.intro-image img:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.15), 0 36px 64px rgba(0,0,0,0.12);
}

/* Services */
.services {
    background-color: var(--light-bg);
    padding: 60px 0;
    text-align: center;
}

.services .container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    flex: 1 1 300px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    margin-bottom: 40px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

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

@keyframes pulse-estimer {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35); opacity: 1; }
    50%       { box-shadow: 0 6px 40px rgba(230, 126, 34, 0.85); opacity: 0.82; }
}

.btn-estimer-wrapper {
    text-align: right;
    padding-right: 80px;
}

.btn-estimer {
    display: inline-block;
    margin-top: 20px;
    padding: 18px 52px;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    animation: pulse-estimer 1.8s ease-in-out infinite;
}

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

/* Footer */
.footer {
    background-color: #222;
    color: #888;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1,
    .hero-text .hero-line {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .hero-text {
        justify-content: flex-end;
        padding-bottom: 0px;
    }

    .intro-badge {
        width: 100%;
        justify-content: center;
    }

    .btn-estimer-wrapper {
        text-align: center;
        padding-right: 0;
    }

    .intro {
        padding: 20px 20px;
    }
}
