* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #e8e8e8;
}

nav {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
}

nav .logo {
    font-size: 20px;
    font-weight: 900;
    background: linear-gradient(135deg, #00d9ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

nav .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

nav .nav-links a {
    color: #e8e8e8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

nav .nav-links a:hover {
    border-bottom: 2px solid #00d9ff;
    color: #00d9ff;
}

.contact-header {
    padding: 80px 40px 40px;
    background: linear-gradient(135deg, #1a0033 0%, #0a0a0a 100%);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    text-align: center;
}

.contact-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d9ff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 18px;
    color: #b8b8b8;
    max-width: 800px;
    line-height: 1.8;
    margin: 0 auto;
}

.contact-container {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #e8e8e8;
}

.form-group input,
.form-group textarea {
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 12px 16px;
    border-radius: 4px;
    color: #e8e8e8;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d9ff;
    background: rgba(0, 217, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-submit {
    padding: 14px 32px;
    background: linear-gradient(135deg, #00d9ff, #7c3aed);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 217, 255, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    border-left: 2px solid #00d9ff;
    padding-left: 24px;
}

.contact-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #00d9ff;
}

.contact-item p {
    font-size: 15px;
    color: #b8b8b8;
    line-height: 1.6;
}

.contact-item a {
    color: #00d9ff;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.gallery-preview {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(0, 217, 255, 0.05) 100%);
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 40px;
    border-radius: 8px;
    margin-top: 80px;
}

.gallery-preview h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: #00d9ff;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.preview-item {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    padding: 40px;
    text-align: center;
    color: #666;
    font-size: 13px;
}

footer a {
    color: #00d9ff;
    text-decoration: none;
    margin: 0 16px;
}

.message {
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    display: none;
}

.message.success {
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid #00d9ff;
    color: #00d9ff;
    display: block;
}

.message.error {
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid #ff6464;
    color: #ff6464;
    display: block;
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 36px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    nav .nav-links {
        gap: 16px;
        font-size: 12px;
    }
}

