:root {
    --primary-color: #0f172a;
    --primary-light: #334155;
    --accent-color: #f59e0b;
    --accent-hover: #d97706;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-color: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --radius: 0.5rem;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background: var(--card-bg);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    min-height: 600px;
}

.split-layout {
    padding: 0;
    /* Remove padding for split layout */
    overflow: hidden;
    /* For rounded corners with image */
    display: flex;
    flex-direction: row;
}

.form-section {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.carousel-section {
    flex: 0 0 50%;
    max-width: 50%;
    background-color: #eee;
    display: none;
    /* Hidden on mobile by default */
}

@media (min-width: 768px) {
    .carousel-section {
        display: block;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background-color: #000;
        /* Optional: black background for video */
    }

    .carousel-section video {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
        /* or cover, depending on preference. 'contain' ensures full video is seen without cropping, 'cover' fills area. User asked for width 100%, usually implies filling width. If height exceeds, it might crop or overflow. 'object-fit: cover' is safer for backgrounds, but for content 'contain' might be better. Let's stick to width 100% and auto height. */
    }
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
    display: block;
}

h1,
h2,
h3 {
    color: var(--primary-color);
    margin-top: 0;
}

h1 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 1.5rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-light);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select,
textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

button {
    display: inline-block;
    width: 100%;
    padding: 0.875rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

button:hover {
    background-color: var(--primary-light);
}

/* Multi-step Styles */
.step {
    display: none;
}

.step.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn-prev {
    background-color: #94a3b8;
    width: auto;
    padding: 0.875rem 2rem;
}

.btn-next {
    background-color: var(--accent-color);
    width: auto;
    padding: 0.875rem 2rem;
}

.btn-next:hover {
    background-color: var(--accent-hover);
}

/* Owl Carousel Customization */
.owl-carousel .item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-bottom: 1rem;
    display: none !important;
}

.language-switcher a {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    color: var(--text-light);
}

.language-switcher a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.owl-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-align: center;
}

/* Service Options Grid */
.service-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.service-option-card {
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
    position: relative;
}

.service-option-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-option-card.active {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color);
}

.service-option-card img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.service-option-card .card-title {
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-color);
    background: #fff;
}

.service-option-card.active .card-title {
    color: var(--accent-color);
    background: #fffbf0;
}