:root {
    --font-main: 'Outfit', sans-serif;
    --color-primary: #9b72cf;
    /* Purple from button */
    --color-primary-hover: #b39ddb;
    --color-text-dark: #333333;
    --color-text-light: #ffffff;
    --color-bg-light: #fdfbff;
    /* Very light purple/white */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --card-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Handling */
.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    background-image: url('../images/teaductive-background.jpeg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90vh;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 60%,
            var(--color-bg-light) 99%);
    z-index: -1;
}

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

/* Header */
.site-header {
    padding: 40px 0;
    text-align: center;
    color: white;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 3rem;
}

.logo-text {
    font-size: 1rem;
    letter-spacing: 4px;
    font-weight: 500;
    text-transform: uppercase;
}

/* Hero */
.hero {
    text-align: center;
    color: white;
    margin-bottom: 60px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-weight: 300;
}

/* Features Cards */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Form Section */
.journey-section {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
    margin-top: 40px;
}

.glass-form-container {
    background: white;
    border-radius: 24px;
    padding: 50px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    text-align: center;
}

.glass-form-container h2 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 10px;
}

.glass-form-container p {
    color: #666;
    margin-bottom: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    background-color: #fcfcfc;
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(155, 114, 207, 0.1);
    background-color: white;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    text-align: center;
    padding-bottom: 40px;
    color: #aaa;
}

.quote-divider {
    width: 40px;
    height: 2px;
    background-color: #ddd;
    margin: 0 auto 20px;
}

.quote {
    font-style: italic;
    font-weight: 300;
    margin-bottom: 40px;
}



.copyright {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .features {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .glass-form-container {
        padding: 30px 20px;
    }

    .background-image,
    .overlay {
        height: 180vh;
    }
}