:root {
    --bg-light: #000000;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --accent: #FFCE00; /* Vura Vivid Yellow */
    --accent-hover: #E0B400;
    --border: #333333;
    --input-bg: #111111;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.split-layout {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.left-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 3.5rem 5%;
    max-width: 55%;
    position: relative;
    z-index: 2;
    background: var(--bg-light);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out forwards;
}

.logo {
    max-height: 115px; /* Logo specifically emphasized as client requested */
    max-width: 100%;
    background: #FFFFFF;
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 0 0 2.5px var(--accent), 0 8px 30px rgba(255, 206, 0, 0.25);
    transition: all 0.3s ease;
}

/* Language Toggle Styling */
.lang-toggle {
    display: flex;
    background: #111111;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: #FFF;
}

.lang-btn.active {
    background: var(--accent);
    color: #000;
    font-weight: 600;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 550px;
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

p.description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 300;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    max-width: 500px;
}

.notify-form {
    display: flex;
    width: 100%;
    max-width: 480px;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
    position: relative;
}

.notify-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--text-main);
    border: 1px solid var(--border);
    border-radius: 100px;
    background: var(--input-bg);
    outline: none;
    transition: all 0.3s ease;
    padding-right: 150px; /* Space for the absolute button */
}

.notify-form input::placeholder {
    color: #94A3B8;
}

.notify-form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    background: #FFFFFF;
}

.notify-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    padding: 0 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    background: var(--text-main);
    color: #fff;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notify-form button:hover {
    background: var(--accent);
    transform: scale(0.98);
}

footer {
    animation: fadeIn 1s ease-out 1s forwards;
    opacity: 0;
}

footer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.right-panel {
    flex: 1;
    background-color: #050505;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 206, 0, 0.15), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 206, 0, 0.05), transparent 40%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accent-ring {
    width: 60vh;
    height: 60vh;
    border: 1px solid rgba(255, 206, 0, 0.2);
    border-radius: 50%;
    position: absolute;
    animation: slowSpin 6s linear infinite;
}

.accent-ring::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent);
    transform: translateX(-50%);
}

.malayalam-font {
    font-family: 'Anek Malayalam', sans-serif !important;
}

.highlight-box {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    max-width: 450px;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.05);
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slowSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mobile & Tablet Responsiveness */
@media screen and (max-width: 1024px) {
    .split-layout {
        flex-direction: column;
    }

    .left-panel {
        max-width: 100%;
        padding: 3rem;
        min-height: 100vh;
    }

    .right-panel {
        display: none; /* Hide for a cleaner mobile experience */
    }

    .content {
        max-width: 100%;
    }
}

@media screen and (max-width: 600px) {

    .left-panel {
        background: radial-gradient(circle at top left, rgba(255, 204, 0, 0.15) 0%, transparent 60%), var(--bg-light) !important;
        padding: 2rem 1.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .notify-form input:focus {
        box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.2) !important;
    }
    
    .header-top {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .logo {
        max-height: 95px;
        padding: 10px 20px;
        margin-bottom: 1.5rem;
    }

    .content {
        align-items: center;
        text-align: center;
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
    
    h1 { 
        font-size: 2rem; 
        line-height: 1.15; 
        margin-bottom: 1.25rem;
    }
    
    p.description {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    /* True mobile native form stacking */
    .notify-form {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .notify-form input {
        width: 100%;
        padding: 1.1rem 1.2rem;
        border-radius: 8px;
        margin-bottom: 0.75rem;
        padding-right: 1.2rem; /* Reset padding for mobile */
    }
    
    .notify-form button {
        position: static;
        width: 100%;
        padding: 1.1rem;
        border-radius: 8px;
        margin: 0;
    }
    
    footer {
        text-align: center;
    }
}
