.hero {
    background: url('../img/gallery7.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 360px 20px;
}

@media (max-width: 568px) {
    .hero {
        padding: 100px 50px;
    }
}

.contact-section {
    padding: 50px;
    background: #f8f8f8;
}

.contact-section h1 {
    text-align: center;
    margin-bottom: 10px;
}

.contact-section p {
    text-align: center;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-form,
.contact-info {
    flex: 1 1 45%;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.contact-form form input,
.contact-form form textarea {
    width: 98%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 50px;
}

textarea {
    height: 200px!important;
}

.contact-form form button {
    background: red;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    height: 50px;
}

.contact-form form button:hover {
    background: darkred;
}

.contact-info h2 {
    margin-top: 0;
}


/* Responsive */

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    .contact-form form button {
        width: 100%;
    }
    .contact-form form input,
    .contact-form form textarea {
        width: 92%;
    }
}

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: orangered;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
    z-index: 9999;
    opacity: 1;
}


/* Hover effect */

.cursor-dot.hover {
    width: 70px;
    height: 70px;
    opacity: 0.8;
}