/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

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

nav a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: -0.2px;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hero section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #ff1b6b, #45caff);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(to right, #ffffff, #45caff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.hero-text p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0;
    font-weight: 400;
}

.hero-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
}

.form-wrapper {
    max-width: 100%;
}

.hero-form h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.hero-form .contact-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.hero-form .form-group {
    margin-bottom: 1rem;
}

.hero-form input,
.hero-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: white;
    border-radius: 12px;
}

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

.hero-form textarea {
    min-height: 100px;
    resize: vertical;
}

.hero-form button {
    width: 100%;
    margin-top: 1rem;
    background: white;
    color: #ff1b6b;
    font-weight: 600;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-form button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.hero-form button:disabled {
    background: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
    transform: none;
}

/* Privacy policy block styles */
.privacy-group {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.privacy-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.privacy-checkbox {
    width: auto !important;
    min-width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: #45caff;
    flex-shrink: 0;
    vertical-align: middle;
    align-self: center;
}

.privacy-text {
    flex: 1;
    text-align: left;
    display: inline-block;
    vertical-align: middle;
    line-height: 18px;
    align-self: center;
}

.privacy-link {
    color: #45caff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.privacy-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Services section */
.services {
    padding: 8rem 0;
    background-color: #000000;
}

.services h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(to right, #ff1b6b, #45caff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.service-icon {
    margin-bottom: 1.5rem;
    color: #45caff;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #000000;
    color: white;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.social-links a {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Notification */
.notification {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white !important;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto;
        font-size: 1.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    /* Privacy policy responsive styles */
    .privacy-label {
        gap: 0.5rem;
        font-size: 0.75rem;
        align-items: center;
        line-height: 1.3;
    }

    .privacy-checkbox {
        min-width: 15px;
        height: 15px;
        margin: 0;
        flex-shrink: 0;
        vertical-align: middle;
    }

    .privacy-text {
        display: inline-block;
        vertical-align: middle;
        line-height: 15px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.5rem 0;
    }

    header .container {
        flex-direction: column;
        padding: 0.5rem;
    }

    .logo {
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }

    nav ul {
        gap: 0.8rem;
    }

    nav a {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-form {
        padding: 1.5rem;
    }

    .services h2 {
        font-size: 2rem;
    }

    /* Privacy policy mobile styles */
    .privacy-label {
        flex-direction: row;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .privacy-checkbox {
        min-width: 12px;
        height: 12px;
        margin: 0;
        flex-shrink: 0;
        vertical-align: middle;
        align-self: center;
    }

    .privacy-text {
        text-align: left;
        display: inline-block;
        vertical-align: middle;
        line-height: 12px;
        align-self: center;
    }
} 