/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: url('jet-contact.jpg') no-repeat center center/cover;
    font-family: 'Poppins', sans-serif;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}

/* Adding Light Black Overlay on Entire Page */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

/* Ensure content is above overlay */
body > * {
    position: relative;
    z-index: 1;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    max-width: 180px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ffcc00;
}

/* Contact Section */
.contact-section {
    max-width: 800px;
    margin: 120px auto 60px;
    text-align: center;
    padding: 20px;
}

.contact-section h2 {
    font-size: 2.5em;
    color: #ffcc00;
    margin-bottom: 15px;
}

.contact-section p {
    font-size: 1.2em;
    color: #ccc;
    margin-bottom: 30px;
}

/* Contact Info */
.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.contact-info a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Instagram Fix */
.contact-info .instagram {
    font-weight: 600;
    font-size: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #fff;
}

.contact-info .instagram a {
    color: #fff;
    text-decoration: none;
}

.contact-info .instagram a:hover {
    color: #ffcc00;
}

.contact-info .instagram img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #ffcc00;
}

.contact-form label {
    display: block;
    text-align: left;
    font-size: 1.1em;
    margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1.1em;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-bottom: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: 2px solid #ffcc00;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    font-size: 1.2em;
    background: #ffcc00;
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #ffdb4d;
}

  
    .whatsapp-btn{
position: fixed;
bottom: 25px;
right: 5px;
width: 55px;
height: 60px;
background: #25D366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 36px;
z-index: 9999;
text-decoration: none;
box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.whatsapp-btn:hover{
background:#20ba5a;
transform: scale(1.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.0);
    margin-top: 60px;
    font-size: 1em;
    color: #fff;
}