:root {
    --primary-color: #d4af37;
    /* Santra Gold */
    --primary-hover: #b5952f;
    --text-color: #111827;
    --text-muted: #6b7280;
    --border-color: #e5e7eb;
    --input-bg: #f9fafb;
    --font-main: 'Unbounded', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background: #fff;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Split Layout */
.split-layout {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* Left Panel - Slider */
.left-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: #000;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
    /* Slight zoom effect start */
    animation: zoomPan 20s infinite alternate;
}

.slide-img.active {
    opacity: 1;
}

@keyframes zoomPan {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.slider-content {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 3;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.slider-content h2 {
    font-size: 2.5rem;
    margin: 0;
}

.slider-content p {
    font-size: 1.2rem;
    margin: 0.5rem 0 0;
    opacity: 0.9;
}


/* Right Panel - Form */
.right-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    padding: 2rem;
    position: relative;
    overflow-y: auto;
}

.form-container {
    width: 100%;
    max-width: 480px;
    /* Constrain form width */
}

.header {
    margin-bottom: 2rem;
    text-align: center;
}

.logo {
    max-width: 180px;
    height: auto;
}

.intro-text {
    text-align: center;
    margin-bottom: 2rem;
}

.intro-text h1 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.intro-text p {
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Form Elements */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    margin-left: 0.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--text-color);
    transition: 0.2s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.submit-btn {
    margin-top: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-main);
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.hidden {
    display: none;
}

#success-message {
    text-align: center;
    padding: 2rem;
    background: #fdfdfd;
    border: 1px dashed var(--border-color);
    border-radius: 12px;
}

.success-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-reset {
    margin-top: 1rem;
    background: none;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 6px;
}

.footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Intl-Tel-Input */
.iti {
    width: 100%;
}

.iti__country-list {
    background: white;
    border: 1px solid var(--border-color);
    z-index: 100;
    /* Ensure dropdown is on top */
}

/* Force specific style for phone input to prevent overlap */
#phone {
    padding-left: 6rem !important;
    /* Make space for +90 dropdown */
}

.iti__selected-dial-code {
    font-weight: 600;
    color: var(--text-color);
}


/* Responsive */
@media (max-width: 900px) {
    .split-layout {
        flex-direction: column;
        height: auto;
    }

    .left-panel {
        height: 60vh;
        /* Taller image area at bottom */
        flex: none;
        order: 2;
        /* Moves to bottom */
    }

    .slider-content h2 {
        font-size: 1.8rem;
    }

    .slider-content p {
        font-size: 1rem;
    }

    .slider-content {
        bottom: 1.5rem;
        left: 1.5rem;
    }

    .right-panel {
        padding: 2rem 1.5rem;
        flex: none;
    }
}