/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #07358c;
    --accent-orange: #ff8c00;
    --text-white: #ffffff;
    --text-light: #e6e6e6;
    --gradient-dark: #041d4a;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--gradient-dark) 0%, var(--primary-blue) 50%, var(--primary-blue) 100%);
    min-height: 100vh;
    color: var(--text-white);
    overflow-x: hidden;
    position: relative;
}

/* Background Decorations */
.background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.decoration-element {
    position: absolute;
    opacity: 0.1;
}

/* Plane decorations */
.plane-1 {
    top: 15%;
    right: 10%;
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5'%3E%3Cpath d='M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-15deg);
    animation: float 20s ease-in-out infinite;
}

.plane-2 {
    bottom: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5'%3E%3Cpath d='M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(25deg);
    animation: float 25s ease-in-out infinite reverse;
}

/* Compass decoration */
.compass {
    top: 60%;
    right: 15%;
    width: 100px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff8c00' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolygon points='16.24 7.76 14.12 14.12 7.76 16.24 9.88 9.88 16.24 7.76' fill='%23ff8c00' opacity='0.3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    animation: rotate 60s linear infinite;
}

/* Globe decoration */
.globe {
    top: 25%;
    left: 8%;
    width: 90px;
    height: 90px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.5'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='2' y1='12' x2='22' y2='12'/%3E%3Cpath d='M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    animation: float 30s ease-in-out infinite;
}

/* Decorative dots */
.dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    opacity: 0.3;
}

.dot-1 {
    top: 10%;
    left: 20%;
    animation: pulse 3s ease-in-out infinite;
}

.dot-2 {
    top: 70%;
    left: 85%;
    animation: pulse 4s ease-in-out infinite 0.5s;
}

.dot-3 {
    top: 85%;
    left: 25%;
    animation: pulse 3.5s ease-in-out infinite 1s;
}

.dot-4 {
    top: 40%;
    right: 5%;
    animation: pulse 4.5s ease-in-out infinite 1.5s;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-20px) rotate(var(--rotation, 0deg));
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.5);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Container */
.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.logo {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Company Name */
.company-name {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    color: var(--text-white);
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Tagline */
.tagline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Contact Information */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    text-align: left;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    color: var(--accent-orange);
    margin-top: 2px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-details p {
    margin: 0;
    color: var(--text-light);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
}

.contact-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    transition: color 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--accent-orange);
    text-decoration: underline;
}

/* Footer */
.footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease-out 1s both;
}

.footer p {
    color: var(--text-light);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .logo {
        max-width: 280px;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }

    .icon {
        margin-top: 0;
    }

    .contact-details {
        align-items: center;
    }

    /* Adjust decorative elements for mobile */
    .plane-1, .plane-2 {
        width: 50px;
        height: 50px;
    }

    .compass, .globe {
        width: 60px;
        height: 60px;
    }

    .plane-1 {
        top: 10%;
        right: 5%;
    }

    .plane-2 {
        bottom: 15%;
        left: 5%;
    }

    .compass {
        top: 50%;
        right: 10%;
    }

    .globe {
        top: 20%;
        left: 5%;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 240px;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }

    .background-decoration {
        display: none;
    }

    .contact-link {
        color: black;
    }
}

