* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Times New Roman', Times, serif;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

/* Background Graphic */
.background-graphic {
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(135, 206, 235, 0.3) 0%,
        rgba(93, 173, 226, 0.4) 25%,
        rgba(135, 206, 235, 0.3) 50%,
        rgba(93, 173, 226, 0.2) 75%,
        rgba(135, 206, 235, 0.3) 100%
    );
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    z-index: 0;
    opacity: 0.6;
    filter: blur(80px);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(135, 206, 235, 0.2);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.logo-arrow {
    color: #87ceeb;
    font-size: 18px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #87ceeb;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
}

.cta-button {
    background: linear-gradient(135deg, #5dade2 0%, #87ceeb 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(135, 206, 235, 0.5);
}

/* Main Content */
.main-content {
    margin-top: 100px;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero {
    text-align: left;
    margin-bottom: 60px;
    max-width: 800px;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff;
}

.accent-text {
    background: linear-gradient(135deg, #5dade2 0%, #87ceeb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(135, 206, 235, 0.5);
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 206, 235, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 16px;
    color: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #87ceeb;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: linear-gradient(135deg, #5dade2 0%, #87ceeb 100%);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(135, 206, 235, 0.3);
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(135, 206, 235, 0.5);
}

.submit-button:active {
    transform: translateY(0);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-info-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 206, 235, 0.2);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(135, 206, 235, 0.4);
    box-shadow: 0 8px 30px rgba(135, 206, 235, 0.2);
}

.info-icon {
    font-size: 32px;
    margin-bottom: 16px;
    color: #87ceeb;
}

.info-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
}

.info-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Globe Card Container */
.globe-card {
    position: relative;
    width: 100%;
    height: 420px;
    min-height: 420px;
    margin-bottom: 2rem;
    border-radius: 16px;
    background: radial-gradient(circle at top, #0b1c2d, #000);
    overflow: hidden;
    border: 1px solid rgba(100, 120, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

#earthCanvas {
    width: 100%;
    height: 100%;
    display: block;
    cursor: grab;
}

#earthCanvas:active {
    cursor: grabbing;
}

/* Pointer Labels - positioned dynamically by JS */
.label {
    position: absolute;
    padding: 6px 12px;
    background: rgba(30, 50, 120, 0.85);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    white-space: nowrap;
    pointer-events: auto;
    z-index: 10;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(135, 206, 235, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease, background 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.label:hover {
    background: rgba(50, 80, 160, 0.95);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.label:active {
    transform: translate(-50%, -50%) scale(0.98);
}

/* Social Media Icons */
.social-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(135, 206, 235, 0.2);
}

.social-icon-link {
    text-decoration: none;
    display: inline-block;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(135, 206, 235, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.3), inset 0 0 20px rgba(255, 69, 0, 0.1);
}

.social-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
}

.social-icon:hover {
    border-color: #87ceeb;
    box-shadow: 0 0 30px rgba(135, 206, 235, 0.6), inset 0 0 30px rgba(255, 69, 0, 0.2);
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.8);
}

.social-icon:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .cta-button {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .background-graphic {
        width: 100%;
        opacity: 0.3;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .contact-form-card {
        padding: 24px 16px;
    }
}

