﻿
.hero-section {
    background-image: linear-gradient(to top, #d4a762 0%, #d4a762 100%) !important;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin: 50px 0px
}

    .hero-section h1 {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 5px;
        color: white;
    }

    .hero-section p {
        font-size: 0.9rem;
        opacity: 0.9;
        color: white;
    }

.main-content {
    padding: 0px 0;
    margin-bottom: 2rem
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.form-section {
    flex: 40%;
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

    .form-section h3 {
        color: #537895;
        margin-bottom: 15px;
        text-align: center;
        font-weight: 600;
        font-size: 1.3rem;
    }

.form-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.form-group {
    flex: 1;
    position: relative;
}

    .form-group.full-width {
        flex: 1 1 100%;
    }

.form-control {
    width: 100%;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 8px 35px 8px 10px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

    .form-control:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
    }

    .form-control::placeholder {
        color: #6b7280;
    }

.input-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 0.9rem;
}

.char-counter1 {
    font-size: 0.75rem;
    color: #fff;
     text-align: revert; 
     margin-top: -7px; 
    /*margin-left: 210px;*/
}

.button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.btn-submit {
    background-image: linear-gradient(to top, #09203f 0%, #537895 100%) !important;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center
}

    .btn-submit:hover {
        transform: translateY(-1px);
    }


.contact-info {
    background: #f8fafc;
    border-radius: 8px;
    padding: 15px;
    /*margin-top: 15px;*/
}

    .contact-info h4 {
        color: #1e3a8a;
        margin-bottom: 10px;
        text-align: center;
        font-weight: 600;
        font-size: 1.1rem;
    }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 10px;
}
    /* Center the last item on the second row */
    .contact-grid .contact-item:last-child {
        grid-column: 1 / -1; /* Span both columns */
        justify-self: center; /* Center horizontally */
    }

.contact-item {
    display: flex;
    align-items: center;
    padding: 8px;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

    .contact-item i {
        color: #6b7280 !important;
        margin-right: 8px;
        font-size: 1rem;
        width: 20px;
        text-align: center;
    }

    .contact-item div {
        flex: 1;
    }

    .contact-item h5 {
        margin: 0;
        font-weight: 500;
        color: #1a1a1a;
        font-size: 0.8rem;
    }

    .contact-item p {
        margin: 2px 0 0;
        color: #6b7280;
        font-size: 0.75rem;
    }

.map-section {
    flex: 60%;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

    .map-section iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .hero-section h1 {
        font-size: 1.5rem;
    }

    .form-row {
        flex-direction: column;
    }

    .contact-grid {
        /* grid-template-columns: 1fr; */
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 536px) {
    .contact-grid .contact-item:last-child {
        grid-column: 1 / -1;
        justify-self: start;
        width: 100%;
    }
}

.hero-section {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    color: white;
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 50px 0px;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat center;
        background-size: cover;
        opacity: 0;
        animation: float 6s ease-in-out infinite;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: slideIn 2s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    to {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3), 0 0 10px rgba(255,255,255,0.5);
    }
}

.hero-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
    margin-bottom: 20px;
}

.project-highlight {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .project-highlight h2 {
        font-size: 1.5rem;
        margin-bottom: 5px;
        color: #1a2a5e;
    }

    .project-highlight p {
       /* font-size: 0.9rem;
        margin: 0;*/
        color: white;
    }

.marquee {
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    margin-top: 20px;
}

.marquee-content {
    display: inline-block;
    animation: marquee 160s linear infinite; /* Faster speed */
}


@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-content span {
    display: inline-block;
    padding: 0 20px;
    font-size: 1rem;
    color: #1a2a5e;
    font-weight: 500;
}

@media (max-width: 768px) {
    /*.hero-section h1 {*/
    font-size: 1.5rem;
}

.marquee-content {
    animation: marquee 60s linear infinite;
}

.btn-submit {
    background-image: linear-gradient(to top, #09203f 0%, #537895 100%) !important;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.map-section {
    flex: 60%;
    background: #f8fafc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    min-height: fit-content;
}

}

#textmsg {
    resize: none !important;
}


/* ================= MAIN CONTAINER ================= */
.contact-container {
    display: flex;
    width: 90%;
    min-height: 100vh;
}

/* ================= LEFT FORM ================= */
.contact-form {
    background: linear-gradient(180deg, #d8b15a, #c9a24d);
    color: #3a2c1a;
    width: 80%;
    padding: 50px 40px 40px 40px;
    box-shadow: inset -10px 0 30px rgba(0,0,0,0.08);
}

    .contact-form h2 {
        margin-bottom: 25px;
        font-size: 34px;
        font-weight: 600;
        line-height: 1.3;
    }

   /* .contact-form p {
        margin-bottom: 30px;
        font-size: 15px;
        color: #4b3a1f;
        font-family: "Open Sans", sans-serif;
        font-weight: 600;
    }*/

    /* Text inputs ONLY – excludes submit/button */
    .contact-form input:not([type="submit"]):not([type="button"]),
    .contact-form textarea {
        width: 100%;
        padding: 14px 10px;
        margin-bottom: 10px;
        border: none;
        outline: none;
        background: transparent;
        border-bottom: 2px solid #8f7a3a;
        font-size: 15px;
        color: #fff;
        box-shadow: none;
        border-radius: 0;
        transition: all 0.3s ease;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-bottom-color: #3a2c1a; /* Dark focus line */
        }

        /* Placeholder color - white */
        .contact-form input::placeholder,
        .contact-form textarea::placeholder {
            color: #ffffff;
            opacity: 1; /* important for Firefox */
        }

        /* Chrome, Edge, Safari */
        .contact-form input::-webkit-input-placeholder,
        .contact-form textarea::-webkit-input-placeholder {
            color: #ffffff;
        }

        /* Firefox */
        .contact-form input::-moz-placeholder,
        .contact-form textarea::-moz-placeholder {
            color: #ffffff;
        }

        /* Internet Explorer 10-11 */
        .contact-form input:-ms-input-placeholder,
        .contact-form textarea:-ms-input-placeholder {
            color: #ffffff;
        }

        /* Microsoft Edge (old) */
        .contact-form input::-ms-input-placeholder,
        .contact-form textarea::-ms-input-placeholder {
            color: #ffffff;
        }



    .contact-form textarea {
        height: 52px;
        resize: none;
    }




/* ================= INFO SECTION ================= */
.contact-info {
    width: 100%;
    /*margin-top: 30px;*/
}

.info {
    position: relative;
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    padding: 28px 26px;
    box-shadow: 0 18px 35px rgba(0,0,0,0.15);
    border-radius: 14px;
}

/* ===== MAP ===== */
.map {
    width: 100%;
    height: 100%;
}

    .map iframe {
        width: 100%;
        height: 100vh;
        border: none;
        filter: grayscale(15%);
    }



    .info h5 {
        font-size: 12px;
        letter-spacing: 2px;
        color: #c9a24d;
        text-transform: uppercase;
        margin-bottom: 6px;
    }

    .info p {
       /* font-size: 15px;
        color: #3a2c1a;
        margin-bottom: 30px;
        line-height: 1.3;*/
    }

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

    .contact-container {
        flex-direction: column;
    }

    .contact-form,
    .contact-info {
        width: 100%;
        padding: 35px 25px;
    }

   /* .contact-info {
        padding-left: 0;
    }*/

    .info {
        position: static;
        transform: none;
        width: 100%;
        margin-bottom: 20px;
    }

    .map {
        width: 100%;
        height: 260px;
    }
}

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap");



.btn-fly {
    margin-top: 12px;
    position: relative;
    border: none;
    border-radius: 50px;
    padding: 7px 19px;
    font-size: 15px;
    font-weight: 700;
    color: #d4a762;
    background: white;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

    /* Hover Animation: glow + lift */
    .btn-fly:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 12px 25px rgba(0,0,0,0.3), 0 0 15px rgba(79,103,237,0.7);
    }

    /* Decorative plane icon using pseudo-element */
    .btn-fly::after {
        content: "✈";
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
        transition: transform 0.4s ease;
    }

    /* Animate plane on hover */
    .btn-fly:hover::after {
        transform: translate(10px, -50%) rotate(20deg);
    }

/* Make textarea same height as input */
.message-box {
    height: 46px; /* same as input height */
    resize: none;
    overflow-y: auto; /* scroll when text exceeds */
    padding-top: 10px;
}
