/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #1C2526;
    color: #FFFFFF;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #1C2526;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav__list {
    display: flex;
    list-style: none;
}

.nav__item {
    margin-left: 30px;
}

.nav__item a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s;
}



.nav__item a:hover::after {
    width: 100%;
}

.burgeron {
    display: none;
    cursor: pointer;
}

.burgeron span,
.burgeron span::before,
.burgeron span::after {
    display: block;
    width:  25px;
    height: 3px;
    background-color: #D4AF37;
    position: relative;
}

.burgeron span::before,
.burgeron span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #D4AF37;
}

.burgeron span::before {
    top: -8px;
}

.burgeron span::after {
    bottom: -8px;
}

/* heracli Section */
.heracli {
    position: relative;
    height: 100vh;
    min-height: 100%;
    overflow: hidden;
}

.heracli__slider {
    position: relative;
    height: 100%;
}

.heracli__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.heracli__slide.active {
    opacity: 1;
}

.heracli__slide .container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.heracli h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.heracli p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #D4AF37;
    color: #1C2526;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #b8972f;
}

.slider__arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.arrow {
    background: none;
    border: none;
    font-size: 24px;
    color: #D4AF37;
    cursor: pointer;
    padding: 10px;
}

/* abouton Section */
.abouton {
    padding: 100px 0;
}

.abouton h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}



.abouton__inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.abouton__img img {
    max-width: 100%;
    border-radius: 10px;
}

.abouton__content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #D4AF37;
    margin-bottom: 10px;
}

.abouton__content p {
    margin-bottom: 20px;
}

/* servuces Section */
.servuces {
    padding: 100px 0;
    background-color: #2A3435;
}

.servuces h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}



.servuces__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service__item {
    background-color: #1C2526;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
}

.service__item:hover {
    transform: translateY(-10px);
}

.service__item img {
    height: fit-content;
    width: 100%;
    object-fit: contain;
    max-height: 200px;
    margin-bottom: 20px;
}

.service__item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 10px;
}

.service__item p {
    margin-bottom: 20px;
}

.btn--small {
    padding: 10px 20px;
    font-size: 14px;
}


.testimonials {
    padding: 100px 0;

}
.testimonials__slider{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.testimonials h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}




.testimonial__item {
    flex: 1;
    background-color: #2A3435;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    opacity: 1;
    transition: opacity 1s ease-in-out;
}



.testimonial__item p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial__item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #D4AF37;
}

/* Call to Action Section */
.cta {
    padding: 100px 0;
    background-color: #D4AF37;
    text-align: center;
}

.cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #1C2526;
    margin-bottom: 20px;
}

.cta p {
    color: #1C2526;
    margin-bottom: 30px;
}

.cta .btn {
    background-color: #1C2526;
    color: #D4AF37;
}

.cta .btn:hover {
    background-color: #2A3435;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}



.contact p {
    text-align: center;
    margin-bottom: 50px;
}

.contact__inner {
    display: flex
;
    justify-content: center;
    gap: 50px;
}
.contact__info {
    max-width: 500px;
}
.contact__info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.contact__info p {
    text-align: left;
    margin-bottom: 10px;
    font-size: 22px;
}

.contact__form {
    text-align: center;
}

/* Footer */
.footer {
    background-color: #1C2526;
    padding: 50px 0;
    border-top: 2px solid #D4AF37;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.footer__col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.footer__col ul {
    list-style: none;
}

.footer__col li {
    margin-bottom: 10px;
}

.footer__col a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.footer__col a:hover {
    color: #D4AF37;
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2A3435;
}
form {
    display: flex
;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    min-width: 320px;
    max-width: 500px;
}
input{
    outline: none;
    border: 2px solid #ddb606;
border-radius: 12px;
padding: 10px;
}
/* Responsive */
@media (max-width: 768px) {
    .heracli h1 {
        font-family: 'Playfair Display', serif;
        font-size: 40px;
        color: #FFFFFF;
        margin-bottom: 20px;
    }
    .nav__list {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #1C2526;
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .nav__list.active {
        display: flex;
    }

    .nav__item {
        margin: 10px 0;
    }

    .burgeron {
        display: block;
    }

    .abouton__inner {
        flex-direction: column;
    }

    .servuces__grid {
        grid-template-columns: 1fr;
    }

    .contact__inner {
        flex-direction: column;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }
    .testimonials__slider {
       flex-direction: column;
    }
}
html,body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
a{
    text-decoration: none;
}
.f{
    display: flex;
}
.f-col{
   flex-direction: column;
}
.f-wrap{
    display: flex;
    flex-wrap: wrap;
}
.f-star{
    align-items:flex-start
}
.b.f {
    display: flex
;

    justify-content: space-around;
}
@media screen and (max-width:768px) {
    .f{
       flex-wrap: wrap;
    }
    .map img{
width: 100%;
}
.map p{
width: 100%;
}
.b.f{
    flex-direction: column;
}
}