* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header and Navigation */
header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 100;
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(30, 33, 36, 0.95);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.logo h2 {
    font-weight: 600;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ff1f6b;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ff1f6b;
    bottom: 0;
    left: 0;
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a.active {
    color: #ff1f6b;
}

nav ul li a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Contact Container */
.contact-container {
    padding: 120px 5% 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ff1f6b;
}

.contact-header p {
    color: #b9b9b9;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

/* Contact Info Section */
.contact-section {
    margin-bottom: 40px;
}

.contact-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #ff1f6b;
    position: relative;
    display: inline-block;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #ff1f6b;
    bottom: -5px;
    left: 0;
}

.info-item {
    display: flex;
    margin-bottom: 20px;
    background-color: #1e2124;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 24px;
    margin-right: 15px;
    color: #ff1f6b;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item p, .info-item a {
    color: #b9b9b9;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #ff1f6b;
}

/* Social Media Links */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-item {
    display: flex;
    align-items: center;
    background-color: #1e2124;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-item:hover {
    transform: translateY(-5px);
    background-color: #282c31;
}

.social-icon {
    margin-right: 10px;
    color: #ff1f6b;
}

/* Contact Form */
.contact-form-container {
    background-color: #1e2124;
    border-radius: 10px;
    padding: 30px;
}

.contact-form-container h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #ff1f6b;
    position: relative;
    display: inline-block;
}

.contact-form-container h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: #ff1f6b;
    bottom: -5px;
    left: 0;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #2a2d31;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    transition: box-shadow 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 31, 107, 0.3);
}

.submit-btn {
    background: linear-gradient(45deg, #ff1f6b, #ff758c);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
    align-self: flex-start;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 31, 107, 0.2);
}

/* Form Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 30px 0;
}

.success-icon {
    width: 60px;
    height: 60px;
    background-color: #ff1f6b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.form-success p {
    color: #b9b9b9;
    margin-bottom: 20px;
}

.form-success .submit-btn {
    margin: 0 auto;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: #ff1f6b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #1e2124;
        padding: 20px 0;
        transform: translateY(-200%);
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        transform: translateY(0);
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .contact-header h1 {
        font-size: 32px;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .info-item {
        flex-direction: column;
    }
    
    .icon {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 30px;
    }
    
    .social-item {
        width: 100%;
        justify-content: center;
    }
}