/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.navbar {
    background: linear-gradient(to right, #1e3c72, #2a5298);  /* Dark blue gradient */
    padding: 1rem 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Styles */
.logo {
    color: #ffffff;  /* Changed to white for better contrast */
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    color: #87CEEB;  /* Light blue color for the plane icon */
    transform: rotate(-45deg);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.logo:hover i {
    transform: rotate(-45deg) translateX(5px); /* Move plane slightly right on hover */
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation Menu Styles */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;  /* Changed to white */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    display: block;
}

.nav-link:hover {
    color: #87CEEB;  /* Light blue on hover */
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #87CEEB;  /* Light blue underline */
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: #ffffff;  /* Changed to white */
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background: linear-gradient(to bottom, #1e3c72, #2a5298);  /* Match navbar gradient */
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover {
        background-color: rgba(135, 206, 235, 0.2);  /* Semi-transparent light blue */
        border-radius: 4px;
    }
} 

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Header */
.contact-header {
    background: linear-gradient(rgba(30,60,114,0.9), rgba(42,82,152,0.9)),
                url('../assets/images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 0;
    padding-top: 70px;
}

.contact-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f5f7fa;
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

/* Contact Information */
.contact-info h2,
.contact-form h2 {
    color: #1e3c72;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.95);
}

.info-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: #87CEEB50;
}

.info-card i {
    font-size: 2rem;
    color: #2a5298;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #1e3c72;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3c72;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-link:hover {
    background: #1e3c72;
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(42,82,152,0.2);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2a5298;
    outline: 2px solid #2a5298;
    box-shadow: 0 0 5px rgba(42,82,152,0.3);
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #2a5298;
    transition: all 0.3s ease;
}

.form-group input:focus ~ .focus-border,
.form-group select:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border {
    width: 100%;
    left: 0;
}

.submit-btn {
    background: linear-gradient(to right, #1e3c72, #2a5298);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: linear-gradient(to right, #2a5298, #1e3c72);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30,60,114,0.3);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.submit-btn.loading i {
    animation: rotate 1s infinite linear;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Map Section */
.map-section {
    padding: 4rem 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Animation Classes */
.animate-fade-down {
    animation: fadeDown 1s ease forwards;
}

.animate-fade-up {
    animation: fadeUp 1s ease forwards;
}

.animate-slide-right {
    animation: slideRight 1s ease forwards;
}

.animate-slide-left {
    animation: slideLeft 1s ease forwards;
}

/* Animation Keyframes */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .contact-header h1 {
        font-size: 2.5rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .social-links {
        justify-content: center;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 16px;
    }
} 

/* Add print media query */
@media print {
    .navbar,
    .social-links,
    .submit-btn {
        display: none;
    }
    
    .contact-header {
        padding-top: 0;
        height: auto;
    }
} 

/* Enhanced Design Elements */
.contact-section {
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.contact-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #87CEEB30, #1e3c7230);
    border-radius: 50%;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(225deg, #87CEEB20, #1e3c7220);
    border-radius: 50%;
    z-index: 0;
}

/* Card hover effects */
.info-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.95);
}

.info-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: #87CEEB50;
}


/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}


/* Footer Design */
.footer {
    background: #fff;  /* White background */
    color: #333;  /* Dark text for contrast */
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);  /* Subtle shadow at top */
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
    background: #fff;
}

.footer-section {
    padding: 0 1.5rem;
}

.footer-section h3 {
    color: #1e3c72;  /* Dark blue heading */
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #1e3c72;  /* Dark blue underline */
}

.footer-section:hover h3::after {
    width: 75px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #666;  /* Medium grey for better readability */
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #1e3c72;  /* Dark blue on hover */
}

.footer-links a i {
    font-size: 0.8rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    background: #f5f5f5;  /* Light grey background */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3c72;  /* Dark blue icons */
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #1e3c72;
    color: #fff;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;  /* Light grey border */
    text-align: center;
    background: #fff;
}

.footer-bottom p {
    color: #666;
    margin: 0;
}

/* Footer Newsletter Form */
.footer-newsletter {
    position: relative;
    margin-top: 1.5rem;
}

.footer-newsletter input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 25px;
    background: #f5f5f5;
    border: 1px solid #ddd;
    color: #333;
    outline: none;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #1e3c72;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    background: #2a5298;
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-links a:hover {
        transform: translateX(0) scale(1.05);
    }
} 