:root {
    --primary-color: #ff7b00;
    /* Orange */
    --primary-dark: #cc6200;
    --secondary-color: #ffffff;
    /* White Background */
    --text-color: #333333;
    /* Dark text */
    --text-muted: #666666;
    --glass-bg: rgba(255, 255, 255, 0.9);
    /* Opaque white for cards */
    --glass-border: rgba(0, 0, 0, 0.1);
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--secondary-color);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Image Overlay - Removed/Disabled for clean white theme */
body::before {
    display: none;
}

/* Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100px;
    /* Fixed height to control bar size */
}

.logo {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.logo img {
    height: 85px;
    /* Adjust height as needed */
    width: auto;
    object-fit: contain;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 5%;
    gap: 3rem;
    position: relative;
    /* Large screens: side by side */
}

@media (min-width: 900px) {
    .hero-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .hero-content {
        max-width: 50%;
    }

    .form-container {
        width: 450px;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-content .highlight {
    color: var(--primary-color);
    display: block;
    text-shadow: none;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 500px;
}

/* Features Grid */
.features-grid {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.features-grid h3 {
    grid-column: 1 / -1;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #f8f9fa;
    /* Light gray for features */
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Form */
.form-container {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    /* Soft shadow for light theme */
    width: 100%;
}

.form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-align: center;
}

.input-group {
    margin-bottom: 1.2rem;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 0.8rem;
    border-radius: 10px;
    color: var(--text-color);
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 123, 0, 0.1);
}

.row {
    display: flex;
    gap: 1rem;
}

.row .input-group {
    flex: 1;
}

.btn-primary {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 123, 0, 0.3);
}

/* Footer */
.main-footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
    background: #f8f9fa;
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .row {
        flex-direction: column;
        gap: 0;
    }
}

/* Sections Common */
section {
    padding: 4rem 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Steps Section */
.steps-section {
    background: #f8f9fa;
    border-top: 1px solid var(--glass-border);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.step-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    background: rgba(255, 123, 0, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.step-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-color);
}

.step-card p {
    color: var(--text-muted);
}


/* Slider Section */
.slider-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.slide-content {
    text-align: center;
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 90%;
}

.slide-content i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 123, 0, 0.3));
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.slide-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Slider Controls */
.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    border: none;
    padding: 1rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 10;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.slider-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}