* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: linear-gradient(135deg, #020024, #090979, #000);
    color: white;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    padding: 20px 60px;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
}

.btn {
    padding: 10px 18px;
    background: transparent;
    border: 1px solid #00d4ff;
    color: #00d4ff;
    cursor: pointer;
    border-radius: 5px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
}

/* Logo Image */
.logo img {
    width: 300px;
    height: 90px;
    object-fit: contain;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 60px;
    height: 90px;   /* âœ… FIXED HEIGHT */

    background: transparent;
}

.logo img {
    height: 140px;   /* âœ… control height only */
    width: auto;    /* maintain ratio */
}

nav {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}


.left p {
    max-width: 450px;
    line-height: 1.6;
}

header {
    position: relative;
}

header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;

    background: linear-gradient(
        90deg,
        transparent,
        #00d4ff,
        transparent
    );
}












/* CONTACT SECTION */
.contactus-page {
    padding: 40px 60px;
    text-align: center;
}

/* TITLE */
.contactus-page h1 {
    font-size: 40px;
    margin-bottom: 50px;

    background: linear-gradient(90deg, #00d4ff, #66e6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow: 0 0 15px rgba(0,212,255,0.6);
}

/* CONTAINER */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* MAP */
.map {
    height: 100%;
    min-height: 400px;
    border-radius: 15px;
    overflow: hidden;

    box-shadow: 0 0 25px rgba(0,212,255,0.3);
}

/* FORM */
.contact-form {
    padding: 30px;
    border-radius: 15px;

    background: rgba(0, 20, 60, 0.35);
    border: 1px solid rgba(0,212,255,0.3);

    backdrop-filter: blur(12px);

    box-shadow: 0 0 25px rgba(0,212,255,0.2);
}

/* INPUT ROW */
.row {
    display: flex;
    gap: 15px;
}

.row input {
    width: 100%;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;

    border-radius: 8px;
    border: 1px solid rgba(0,212,255,0.3);

    background: transparent;
    color: white;

    margin-bottom: 15px;
}

/* PLACEHOLDER */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

/* CHECKBOX */
.checkbox {
    display: flex;
    align-items: center;   /* ðŸ”¥ FIX alignment */
    gap: 8px;
    font-size: 13px;
    color: #ccc;

}



.checkbox input {
    width: 16px;
    height: 16px;
    margin: 0;             /* ðŸ”¥ remove extra shift */
    cursor: pointer;
    accent-color: #00d4ff;
}











/* CHECKBOX FIX */
.checkbox {
    margin-top: 5px;
}



.checkbox label {
    display: flex;
    align-items: center;   /* ðŸ”¥ perfect vertical alignment */
    gap: 8px;              /* ðŸ”¥ clean spacing */
    font-size: 13px;
    color: #ccc;
    cursor: pointer;
}




/* BUTTON */
.contact-form button {
    width: 100%;
    padding: 12px;

    border-radius: 8px;
    border: 1px solid #00d4ff;

    background: transparent;
    color: #00d4ff;

    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #00d4ff;
    color: black;
    box-shadow: 0 0 20px rgba(0,212,255,0.6);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}



/* FIX FULL WIDTH */
.iti {
    width: 100%;
}

/* INPUT INSIDE */
.iti input {
    width: 100%;
    padding-left: 90px !important; /* space for flag */
}





/* ADD SPACE BETWEEN ALL FORM FIELDS */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;  /* ðŸ”¥ main fix */
}




.wa-blue {
    width: 60px;
    height: 60px;
    background: #09ed55;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-blue img {
    width: 30px;
    filter: brightness(0) invert(1); /* makes icon white */
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;   /* ✅ this pushes it to right */
    left: auto;    /* ✅ important (removes left alignment issue) */
    z-index: 9999;
}






/* FOOTER */
.footer {
    margin-top: 60px;
    padding: 20px 40px;

    text-align: center;

    background: rgba(0, 20, 60, 0.4);
    border-top: 1px solid rgba(0,212,255,0.3);

    backdrop-filter: blur(10px);
}

.footer-content p {
    margin: 5px 0;
    font-size: 13px;
    color: #aaa;
}

.footer-content p:first-child {
    color: #00d4ff;
    font-weight: 500;
}