﻿body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg,#f8fafc 0%,#e2e8f0 100%);
}


/*==========================
    CONTAINER
===========================*/

.contact-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}


/*==========================
        HEADER
===========================*/

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}


    .contact-header h1 {
        font-size: 52px;
        font-weight: bold;
        background: linear-gradient( 135deg, #08574c 0%, #2fa88d 50%, #08574c 100% );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }


    .contact-header p {
        font-size: 18px;
        color: #64748b;
        margin-top: 15px;
    }


/*==========================
        GRID
===========================*/

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    align-items: start;
}


/*==========================
        CARDS
===========================*/


.contact-form,
.contact-info {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
}



    /*==========================
        TITLES
===========================*/


    .contact-form h2,
    .office-section h2 {
        text-align: center;
        margin-bottom: 25px;
        font-size: 34px;
        font-weight: bold;
        background: linear-gradient( 135deg, #08574c 0%, #2fa88d 50%, #08574c 100% );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }



    /*==========================
        INPUTS
===========================*/


    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        width: 100%;
        padding: 15px;
        margin-bottom: 18px;
        border-radius: 10px;
        border: 1px solid #d6d6d6;
        font-size: 15px;
        box-sizing: border-box;
        transition: .3s;
    }


        .contact-form input:focus,
        .contact-form select:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #2fa88d;
            box-shadow: 0 0 0 4px rgba(47,168,141,.18);
        }



    /*==========================
        BUTTON
===========================*/


    .contact-form button {
        width: 100%;
        padding: 15px;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        color: white;
        font-size: 16px;
        font-weight: bold;
        background: linear-gradient( 135deg, #08574c, #2fa88d );
        transition: .3s;
    }


        .contact-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0,0,0,.18);
        }



/*==========================
        INFO
===========================*/


.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}



.info-box {
    background: white;
    padding: 20px;
    border-radius: 15px;
    border-left: 6px solid #2fa88d;
    transition: .3s;
}



    .info-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }



    .info-box h3 {
        margin: 0;
        color: #08574c;
        font-size: 22px;
    }



    .info-box p {
        margin-top: 10px;
        color: #475569;
        line-height: 1.6;
    }



/*==========================
      BUTTONS
===========================*/


.buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}


.btn {
    flex: 1;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    background: linear-gradient( 135deg, #08574c, #2fa88d );
    transition: .3s;
}



    .btn:hover {
        transform: translateY(-3px);
        color: white;
    }



    .btn.secondary {
        background: white;
        color: #08574c;
        border: 2px solid #2fa88d;
    }



        .btn.secondary:hover {
            background: #2fa88d;
            color: white;
        }



/*==========================
        OFFICE LOCATION
===========================*/


.office-section {
    margin-top: 60px;
}



.office-card {
    display: grid;
    grid-template-columns: 35% 65%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}



.office-info {
    padding: 40px;
    background: linear-gradient( 135deg, #08574c 0%, #2fa88d 50%, #08574c 100% );
    color: white;
}



    .office-info h3 {
        font-size: 26px;
        margin-bottom: 25px;
        font-weight: bold;
    }



    .office-info p {
        color: white;
        line-height: 1.8;
        font-size: 16px;
    }



.office-map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    display: block;
}



/*==========================
        RESPONSIVE
===========================*/


@media(max-width:900px) {


    .contact-grid {
        grid-template-columns: 1fr;
    }


    .office-card {
        grid-template-columns: 1fr;
    }


    .office-map iframe {
        min-height: 300px;
    }
}



@media(max-width:768px) {


    .contact-container {
        padding: 25px 15px;
    }



    .contact-header h1 {
        font-size: 34px;
    }



    .contact-header p {
        font-size: 16px;
    }



    .contact-form,
    .contact-info {
        padding: 22px;
    }



        .contact-form h2,
        .office-section h2 {
            font-size: 28px;
        }



    .buttons {
        flex-direction: column;
    }



    .office-info {
        text-align: center;
        padding: 30px;
    }
}
