* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: #d6d6d6;
    font-family: 'Segoe UI', Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.nav {
    display: flex;
    background-color: rgb(2, 20, 3);
    gap: 47px;
    width:70%;
    margin-left:10%;
    margin: 2% auto 0 auto;
    border-radius: 40px;
    align-items: center;
    padding: 5px;
    position: relative;
}
.nav a {
    color: white;
    font-family: 'Segoe UI', sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
}
.nav a:hover {
    cursor: pointer;
    color: rgb(128, 86, 10);
    transform: scale(1.1);
}
.logo-btn {
    font-size: 30px;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    margin-left: 9px;
    font-weight: bold;
    background-color: orange;
    border: none;
    color: #fff;
}
h2 {
    color: white;
    font-weight: lighter;
    margin-right: 10%;
}
.contact-link {
    border-radius: 15px;
    background-color: orange;
   color:white;
    padding: 9px 18px;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}
.contact-link:hover {
    background-color: white;
    color:black;
}
.menu-icon {
    display: none;
    font-size: 36px;
    color:orange;
    cursor:pointer;
    margin-left: auto;
    margin-right: 18px;
    z-index: 1001;
}
.contact-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 30px;
}
.contact-title {
    text-align: center;
    color: darkgreen;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: 2.5px;
    width: 100%;
    text-transform: uppercase;
    line-height: 1.1;
    position: relative;
    text-shadow: 1px 2px 8px #b2d8b2, 0 1px 0 #fff;
}
.contact-title::after {
    content: "";
    display: block;
    margin: 10px auto 0 auto;
    width: 60px;
    height: 3px;
    background: darkgreen;
    border-radius: 2px;
}
.contact-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    margin: 40px 0;
    width: 90%;
    max-width: 1100px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 40px 30px;
}
.contact-form {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form label {
    font-weight: 600;
    color: #021403;
    margin-bottom: 4px;
}
.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #b2d8b2;
    font-size: 16px;
    background: #f7f7f7;
    color: #222;
    outline: none;
    transition: border 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border: 1.5px solid orange;
}
.contact-btn {
    background: orange;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    border: none;
    border-radius: 24px;
    padding: 12px 0;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.contact-btn:hover {
    background: #021403;
    color: #fff;
    transform: scale(1.04);
}
.contact-info {
    flex: 1;
    min-width: 220px;
    padding-left: 30px;
}
.contact-info h2 {
    color: #021403;
    font-size: 22px;
    margin-bottom: 12px;
}
.contact-info p {
    font-size: 16px;
    color: #222;
    margin-bottom: 10px;
}
.contact-info a {
    color: #222;
    text-decoration: none;
    font-weight: 600;
}
.contact-info a:hover {
    text-decoration: underline;
}
.soc {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    margin-bottom: 0;
}
.soc img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%) contrast(1.2) brightness(0.95);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: filter 0.2s, transform 0.2s, box-shadow 0.2s;
    border: 1.5px solid #eee;
}
.soc img:hover {
    filter: grayscale(0%) contrast(1.1) brightness(1.1);
    transform: scale(1.12);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-color: orange;
}
.footer-text {
    text-align: center;
    color: #444;
    font-size: 13px;
    font-weight: normal;
    margin-top: 12px;
    letter-spacing: 0.5px;
}

/* Responsive nav */
/* @media (max-width: 900px) {
    .nav {
        width: 98vw;
        margin: 2% auto 0 auto;
        gap: 10px;
        padding: 8px 0;
        border-radius: 20px;
    }
    .nav a, .nav h2, .nav button {
        font-size: 16px;
    }
    .contact-container {
        gap: 18px;
        width: 98vw;
        padding: 30px 10px;
    }
} */
@media (max-width: 900px)  {
    .nav {
        flex-direction: column;
        align-items: flex-start;
        width: 100vw;
        gap:8px;
        border-radius: 0;
        padding: 10px 0 10px 10px;
        position: relative;
    }
    .nav a, .nav h2 {
        display: none;
        width: 100%;
        text-align: left;
        padding: 12px 18px;
        margin: 0;
        border-radius: 0;
        background: none;
        color: #fff;
        font-size: 17px;
    }
       .nav button {
    font-size: 28px;
    border-radius: 100%;
    width: 38px;
    height: 38px;
    background: orange;
    color: #fff;
    border: none;
    margin-right: 8px;
    font-weight: bold;
    }
    .nav.open a,
    .nav.open h2,
    .nav.open button {
        display: block;
        margin: 10px 0;
    }
    .menu-icon {
        display: block;
        position: absolute;
        top: 10px;
        right: 18px;
    }
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 18px 2vw;
    }
    .contact-info {
        padding-left: 0;
    }
}
@media (max-width: 500px) {
    .contact-title {
        font-size: 22px;
        letter-spacing: 1.2px;
    }
    .contact-container {
        padding: 10px 0;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 15px;
        padding: 10px;
    }
}
/* ...existing code... */
.contact-info p {
    font-size: 16px;
    color: #222;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.contact-info i {
    color: orange;
    font-size: 18px;
    min-width: 22px;
}
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    border-radius: 16px;
    margin-top: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: 0;
    border-radius: 16px;
}
/* ...existing responsive code... */
@media (max-width: 900px) {
    .contact-container {
        gap: 18px;
        width: 98vw;
        padding: 30px 10px;
    }
    .map-responsive {
        padding-bottom: 50%;
    }
}
@media (max-width: 700px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 18px 2vw;
    }
    .contact-info {
        padding-left: 0;
        width: 100%;
    }
    .map-responsive {
        padding-bottom: 60%;
    }
}
@media (max-width: 500px) {
    .contact-title {
        font-size: 22px;
        letter-spacing: 1.2px;
    }
    .contact-container {
        padding: 10px 0;
    }
    .contact-form input,
    .contact-form textarea {
        font-size: 15px;
        padding: 10px;
    }
    .map-responsive {
        padding-bottom: 70%;
    }
}
/* ...existing code... */
