* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}
h3{
    padding-bottom: 15px;
}
a{
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    text-decoration: none;
}
p{
    padding-bottom: 15px;
}
.top-bar {
    background: #000;
    color: #fecc00;
    padding: 5px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position:fixed;
    top:0;
    width:100%;
    z-index: 1000;
}
.top-bar a{
    color: #fecc00;
    text-decoration:none;
}
.top-bar-left {
    font-size: 1.5em;
    font-weight: bold;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-address {
    font-size: 0.95em;
}

.top-bar-messengers {
    display: flex;
    gap: 12px;
}

.messenger-icon {
    width: 28px;
    height: 28px;
    transition: opacity 0.3s;
}

.messenger-icon:hover {
    opacity: 0.7;
}

.hero {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.5em;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.contact-info {
    background: #f4f4f4;
    padding: 30px 20px;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-item h3 {
    margin-bottom: 10px;
    color: #000;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fecc00;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.btn:hover {
    background: #000;
    color: #fecc00;
}
.full-content{
    text-align: justify;
}
.service-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.service-block:nth-child(even) {
    direction: rtl;
}

.service-block:nth-child(even) > * {
    direction: ltr;
}

.service-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.service-content h2 {
    color: #000;
    margin-bottom: 15px;
    font-size: 2em;
}

.service-content p {
    font-size: 1.1em;
    line-height: 1.8;
}

.about-section {
    background: #000;
    padding: 60px 20px;
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    color:#fff;
}

.about-content h2 {
    color: #fecc00;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.reviews-section {
    padding: 60px 20px;
    background: white;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.reviews-container h2 {
    color: #000;
    font-size: 2.5em;
    margin-bottom: 30px;
}

#google-reviews {
    min-height: 300px;
    margin-bottom: 20px;
}

footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 30px 20px;
}

@media (max-width: 768px) {
    body{
        overflow-x: clip;
    }
    .hero {
        height: 470px;
    }
    .hero-video{
        top: 70px;
        max-height: 400px;
    }
    .hero h1 {
        font-size: 2em;
    }
    .top-bar{
        display: block;
    }

    .top-bar-address {
        font-size: 0.9em;
    }
    .top-bar-messengers{
        position: absolute;
        right: 30px;
        top: 11px;
    }
    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .service-block {
        grid-template-columns: 1fr;
    }

    .service-block:nth-child(even) {
        direction: ltr;
    }

    .service-image {
        height: 300px;
    }
    .es-main-content{
        margin-bottom: 100px;
    }
    .reviews-section{
        overflow: hidden;
    }
    .hero-content{
        padding: 0px 25px;
    }

}

.es-background-container{
    max-height: 265px;
    overflow-y: clip;
}