.about-hero{
    position: relative;
    height: 97vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px;
}

/* VIDEO */
.bg-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* OVERLAY */
.about-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(104, 46, 2, 0.5);
    z-index: -1;
}

/* CURVE */
.about-hero::after{
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 150px;
    background: white;
    border-radius: 100% 100% 0 0;
    transform: scaleX(1.1);
    z-index: 1;
}

/* CONTENT */
.about-contents{
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.about-contents h4{
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-contents h1{
    font-size: 60px;
    margin-bottom: 20px;
}

.about-contents-p{
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}
 

 @media (max-width: 1100px){
    .about-contents h1{
        font-size: 48px;
    }

    .about-contents h4{
        font-size: 18px;
    }

    .about-contents-p{
        font-size: 16px;
    }
}
@media (max-width: 800px){

    .about-hero{
        height: 85vh;
    }

    .about-contents h1{
        font-size: 36px;
    }

    .about-contents h4{
        font-size: 16px;
    }

    .about-contents-p{
        font-size: 15px;
        line-height: 1.6;
    }

    .btn{
        padding: 12px 28px;
        font-size: 14px;
    }
}
@media (max-width: 480px){

    .about-hero{
        height: 80vh;
    }

    .about-contents h1{
        font-size: 31px;
    }

    .about-contents h4{
        font-size: 14px;
        letter-spacing: 1px;
    }

    .about-contents-p{
        font-size: 16px;
        line-height: 1.5;
    }

	.about-hero::after {  transform: scaleX(1.4);}
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 60px 8%;
    background: #fefefe;
}

.contact-container {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #0d0242;
    padding: 30px;
    border-radius: 15px;
    flex-wrap: wrap;
}

/* IMAGE */
.contact-image {
    flex: 1;
    text-align: center;
}

.contact-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* FORM */
.contact-form {
    flex: 1;
}

.contact-form h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact-form h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 60%;
    height: 4px;
    background: linear-gradient(85deg, #f7761a, #342105);
    border-radius: 10px;
}

.contact-form p {
    color: #f9f7f7;
    margin-bottom: 25px;
}

/* INPUTS */
.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #6c5ce7;
    box-shadow: 0 0 5px rgba(108, 92, 231, 0.3);
}

/* BUTTON */
.contact-form button {
    padding: 12px;
    background: linear-gradient(to bottom, #f7761a, #fac26c);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

/* ================= MAP SECTION ================= */
.contact-info-section {
    padding: 80px 8%;
    background: #d6d6d4;
}

.contact-info-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    background: #13075b;
    padding: 40px;
    border-radius: 15px;
}

/* MAP */
.map {
    flex: 1;
    min-height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

/* INFO CARDS */
.info-cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.card h3 {
    color: #f57c25;
    margin-bottom: 10px;
}

.card p {
    color: #555;
    font-size: 16px;
}

.card h3 i {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fa8b23;
    border-radius: 50%;
    color: #fc751b;
    margin-right: 10px;
    transition: 0.3s;
}

/* HOVER */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card:hover h3 i {
    background: #fff;
    color: #120287;
    transform: rotate(10deg) scale(1.1);
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 1024px) {
    .about-contents h1 {
        font-size: 45px;
    }

    .contact-container {
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .about-contents h1 {
        font-size: 38px;
    }

    .about-contents-p {
        font-size: 16px;
    }

    .contact-container,
    .contact-info-container {
        flex-direction: column;
    }

    .contact-form h2 {
        font-size: 28px;
    }

    .map {
        min-height: 300px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .about-contents h1 {
        font-size: 32px;
    }

    .contact-section {
        padding: 40px 5%;
    }

    .contact-info-section {
        padding: 40px 5%;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
    }

    .contact-form button {
        font-size: 16px;
    }
}