:root {
    --primary: #1E4D8C;
    --secondary: #34B5B8;
    --accent: #E63946;
    --dark: #1A1A1A;
    --light: #FFFFFF;
    --gradient-1: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-2: linear-gradient(45deg, var(--secondary), var(--accent));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #FAFAFA;
    color: var(--dark);
}

.anywin-header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.anywin-nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.anywin-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.anywin-logo-text {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    color: transparent;
}

.anywin-logo-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.anywin-menu {
    display: flex;
    gap: 40px;
}

.anywin-menu a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    position: relative;
    padding: 8px 0;
}

.anywin-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.anywin-menu a:hover::after,
.anywin-menu .anywin-active::after {
    width: 100%;
}

.anywin-contact-section {
    padding: 160px 40px 100px;
    background: var(--light);
}

.anywin-contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.anywin-contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.anywin-contact-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.anywin-contact-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.anywin-contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.anywin-contact-details {
    display: grid;
    gap: 30px;
}

.anywin-contact-card {
    background: #F8F9FA;
    padding: 30px;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.anywin-contact-card:hover {
    transform: translateY(-5px);
}

.anywin-contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.anywin-contact-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.anywin-contact-card p {
    color: #666;
    margin-bottom: 8px;
}

.anywin-contact-form {
    background: var(--light);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.anywin-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.anywin-form-group {
    margin-bottom: 20px;
}

.anywin-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.anywin-form-group input,
.anywin-form-group select,
.anywin-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.anywin-form-group textarea {
    height: 120px;
    resize: vertical;
}

.anywin-form-group input:focus,
.anywin-form-group select:focus,
.anywin-form-group textarea:focus {
    border-color: var(--secondary);
    outline: none;
}

.anywin-submit-button {
    width: 100%;
    padding: 16px;
    background: var(--gradient-1);
    color: var(--light);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.anywin-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(30, 77, 140, 0.15);
}

.anywin-map-section {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.anywin-map-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.anywin-footer {
    background: var(--dark);
    color: var(--light);
    padding: 80px 40px 40px;
    position: relative;
    overflow: hidden;
}

.anywin-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0) 100%
    );
}

.anywin-footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}

.anywin-footer-info {
    max-width: 500px;
}

.anywin-footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFFFFF, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.anywin-footer-info p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    font-size: 16px;
}

.anywin-footer-links {
    display: grid;
    gap: 20px;
    padding-top: 8px;
}

.anywin-footer-links a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
    display: inline-block;
    padding: 4px 0;
}

.anywin-footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.anywin-footer-links a:hover {
    color: var(--secondary);
}

.anywin-footer-links a:hover::after {
    width: 100%;
}

.anywin-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.anywin-footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

@media (max-width: 1024px) {
    .anywin-contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .anywin-menu {
        display: none;
    }

    .anywin-contact-section {
        padding: 120px 20px 60px;
    }

    .anywin-contact-header h1 {
        font-size: 36px;
    }

    .anywin-form-row {
        grid-template-columns: 1fr;
    }

    .anywin-footer {
        padding: 60px 20px 30px;
    }

    .anywin-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .anywin-footer-info {
        max-width: 100%;
    }

    .anywin-footer-links {
        padding-top: 0;
    }
} 