:root {
    --bg-color: #0E2B49;
    --primary-color: #D5FF79;
    --primary-hover: #bce666;
    --accent-color: #308DFC;
    --text-white: #FFFFFF;
    --text-gray: #A1A1AA;
    --input-bg: #f9fafb;
    --input-border: #e5e7eb;
    --form-bg: #FFFFFF;
    --form-text: #1f2937;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-white);
    line-height: 1.3;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
}

.blob-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background-color: var(--accent-color);
}

.blob-2 {
    bottom: -10%;
    left: -5%;
    width: 700px;
    height: 700px;
    background-color: var(--primary-color);
}

/* Layout Container */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 4%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    width: 100%;
    align-items: center;
    padding: 60px 0;
}

/* Left Side Content */
.content-left {
    text-align: left;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}

.logo-img {
    height: 54px;
    width: auto;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -1px;
    line-height: 0.9;
}

.logo-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    margin-top: 5px;
}

.main-title {
    font-size: clamp(42px, 5.5vw, 92px);
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 35px;
    letter-spacing: -3px;
}

.highlight {
    color: var(--primary-color);
}

.subtitle {
    font-size: clamp(18px, 1.8vw, 24px);
    color: var(--text-white);
    max-width: 620px;
    line-height: 1.5;
    opacity: 0.85;
    font-weight: 400;
}

.bold {
    font-weight: 700;
}

/* Right Side (Form) */
.content-right {
    display: flex;
    justify-content: flex-end;
}

.form-container {
    background-color: var(--form-bg);
    padding: 40px;
    border-radius: 28px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
    color: var(--form-text);
    transition: all 0.5s ease; /* Smooth expansion */
}

.form-container.wide {
    max-width: 800px; /* Wider for Calendly */
}

.form-header, .calendar-header {
    margin-bottom: 30px;
}

.form-header h2, .calendar-header h2 {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 900;
    color: var(--bg-color);
    margin-bottom: 10px;
    line-height: 1.1;
}

.form-header p, .calendar-header p {
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
}

.input-group {
    margin-bottom: 22px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #374151;
}

.input-wrapper input,
.input-wrapper select {
    width: 100%;
    padding: 16px 18px;
    background-color: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    color: #111827;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.25s ease;
    outline: none;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    border-color: var(--accent-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(48, 141, 252, 0.08);
}

button[type="submit"] {
    width: 100%;
    padding: 18px;
    background-color: var(--bg-color);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    letter-spacing: 0.5px;
}

button[type="submit"]:hover {
    background-color: #1a4a7a;
    transform: translateY(-2px);
}

/* Calendar View */
.calendar-view {
    width: 100%;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 0;
}

.hidden {
    display: none !important;
}

/* Footer */
.footer {
    padding: 40px 4%;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    z-index: 10;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .container {
        padding: 40px 5%;
        display: block;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
        padding-top: 20px;
    }
    
    .content-left {
        display: block;
        text-align: left;
    }
    
    .logo {
        margin-bottom: 30px;
        justify-content: flex-start;
    }

    .logo-img {
        height: 40px;
    }

    .logo-title {
        font-size: 20px;
    }
    
    .main-title {
        margin-bottom: 20px;
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .subtitle {
        font-size: 17px;
        margin-bottom: 40px;
    }
    
    .content-right {
        justify-content: flex-start;
    }

    .form-container {
        padding: 30px 20px;
        max-width: 100% !important;
        text-align: left;
    }

    .footer {
        text-align: center;
        padding: 40px 0 20px;
        width: 100%;
    }
}