/* ===== PAGE STYLES ===== */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #d9ecff 0%, #ffe8d6 100%);
    color: #333;
}

/* Header */
.main-header {
    position: sticky;               /* stays at the top */
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;

    background: rgba(255, 255, 255, 0.4);  /* semi-transparent for glass effect */
    backdrop-filter: blur(10px);           /* frosted glass effect */
    -webkit-backdrop-filter: blur(10px);   /* Safari support */

    border-bottom: 1px solid rgba(255, 255, 255, 0.3); /* subtle border */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);         /* gentle shadow */
    
    z-index: 100; /* stays above content */
}

/* Ensure nav links are readable on glass */
.navbar a {
 color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
    padding: 6px 12px;
    border-radius: 6px;
}

.navbar a:hover,
.navbar a.active {
    color: #0077ff;
    background-color: rgba(0, 119, 255, 0.1);

}
.logo {
    height: 60px;
}

.navbar ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.sign-btn {
    background: #0077ff;
    padding: 6px 14px;
    border-radius: 6px;
    color: #fff !important;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Contact Intro */
.contact-intro {
    padding: 100px 40px 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro h1 {
    font-size: 3rem;
    color: #003366;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #003366, #FF6B00); /* Added orange */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 15px;
    line-height: 1.8;
}

/* Contact Boxes */
.contact-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-color: rgba(255, 107, 0, 0.2); /* Changed to orange */
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B00, #FF8C42); /* Changed to orange gradient */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card p {
    color: #666;
    margin: 8px 0;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    font-size: 2.2rem;
    color: #003366;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.contact-form-section h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #FF6B00, #FF8C42); /* Orange gradient */
    margin: 10px auto;
    border-radius: 2px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #003366;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: #FF6B00; /* Changed to orange */
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1); /* Orange shadow */
}

.textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Submit Button */
.submit-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #FF6B00, #E55A00); /* Orange gradient */
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.2); /* Orange shadow */
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3); /* Orange shadow */
    background: linear-gradient(135deg, #E55A00, #CC4A00);
}

/* Response Message */
.response-note {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #001f4d 0%, #003366 100%); /* Kept blue for contrast */
    color: white;
    padding: 60px 40px 30px;
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-left img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-left p {
    color: #b3b3cc;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-middle h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #b3b3cc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FF6B00; /* Orange hover */
    padding-left: 5px;
}

.footer-right h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-contact p {
    color: #b3b3cc;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.footer-social a {
    color: #b3b3cc;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #FF6B00; /* Orange hover */
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b3b3cc;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 20px;
    }
    
    .hamburger {
        display: block;
    }
    
    .navbar ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 20px 20px;
        z-index: 999;
    }
    
    .navbar ul.show {
        display: flex;
    }
    
    .contact-intro {
        padding: 80px 20px 40px;
    }
    
    .contact-intro h1 {
        font-size: 2.2rem;
    }
    
    .contact-boxes {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 25px;
    }
    
    .contact-form-section {
        padding: 40px 20px;
        margin: 40px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    footer {
        padding: 40px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}