@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sora:wght@100..800&display=swap');

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

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.6;
    color: #2D2D2D;
    background: linear-gradient(135deg, #EDEDEE 0%, #EDEDEE 100%);
    min-height: 100vh;
}

.main {
    display: flex;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero {
    width: 50%;
    overflow-y: scroll;
}

.video {
    width: 50%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo svg {
    width: 100%;
    max-width: 320px;
    height: auto;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
    text-align: center;
    color: #2D2D2D;
    z-index: 1;
    margin-top: -16px;
}

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

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: 300px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(237, 237, 238, 0.8) 0%, rgba(237, 237, 238, 0.6) 100%);
}

.hero-content {
    padding: 0 20px;
    position: relative;
    z-index: 2;
    margin-top: 48px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
}

.title-line s {
    text-decoration: underline;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0;
}

/* Lead Form */
.lead-form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 500px;
    height: 480px;
    margin: 0 auto;
    transform: translateY(50px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lead-form h3 {
    color: #333;
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #966362 0%, #966362 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.success-message {
    text-align: center;
    border-radius: 10px;
    margin-top: 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.success-message i {
    font-size: 48px;
    margin-bottom: 10px;
    display: block;
}

/* Services Section */
.services {
    padding: 80px 0;
    text-align: center;
    color: white;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 48px;
    color: #ffd700;
    margin-bottom: 20px;
}

.service-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 24px;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0 8px 0;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    color: #2D2D2D;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 24px;
}

.contact-info {
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
}

html .choices__inner {
    border: none;
    padding: 0;
}

html .choices__list {
    border: none !important;
    border-radius: 15px !important;
}

html .choices__item {
    color: #2c2c2c;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {

    .main {
        align-items: flex-start;
        overflow: scroll;
    }

    .contact {
        padding-bottom: 0;
    }

    .video {
        width: auto;
    }

    .hero {
        width: auto;
    }

    .header {
        flex-direction: column;
        gap: 20px;
    }

    .form-buttons {
        flex-direction: column-reverse;
    }

    .video-background video {
        object-position: initial;
    }

    .nav {
        gap: 20px;
    }

    .hero {
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .lead-form-container {
        padding: 30px 20px;
        height: auto;
    }

    .video-background {
        width: 100%;
        height: 50vh;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .social-link {
        width: 200px;
        justify-content: center;
    }
}

/* Animation classes */
.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e1e1e1;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e1e1e1;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 12px;
    color: #999;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

.progress-step.active .step-number {
    background: #966362;
    color: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.progress-step.active .step-title {
    color: #966362;
    font-weight: 600;
}

.progress-step.completed .step-number {
    background: #CBEAF2;
    color: white;
}

.progress-step.completed .step-title {
    color: #CBEAF2;
}

/* Form Steps */
.form-step {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* Checkbox Styles */
.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    position: relative;
    padding-left: 25px;
    text-align: left;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #e1e1e1;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-label:hover input ~ .checkmark {
    border-color: #CBEAF2;
}

.checkbox-label input:checked ~ .checkmark {
    background-color: #CBEAF2;
    border-color: #CBEAF2;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 0;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

/* Navigation Buttons */
.next-btn, .back-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.next-btn {
    background: linear-gradient(135deg, #966362 0%, #966362 100%);
    color: white;
}

.next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.back-btn {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e1e1e1;
}

.back-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.form-buttons .back-btn {
    flex: 1;
}

.form-buttons .submit-btn {
    flex: 2;
}

/* Choices.js Custom Styles */
.choices.pet-type-choices {
    margin-bottom: 0;
}

.choices.pet-type-choices .choices__inner {
    background: white;
    border: none;
    border-radius: 10px;
    padding: 15px;
    min-height: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
}

html .choices__list--single {
    display: inline-block;
    padding: 20px;
    width: 100%;
    color: #2c2c2c;
    background: #ffffff;
    text-align: left;
    border-radius: 15px;
}

.choices.pet-type-choices.is-focused .choices__inner {
    border-color: #CBEAF2;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.choices.pet-type-choices .choices__list--single {
    padding: 0;
}

.choices.pet-type-choices .choices__item--selectable {
    padding: 0;
    margin: 0;
}

.choices.pet-type-choices .choices__placeholder {
    color: #999;
    opacity: 1;
}

.choices.pet-type-choices .choices__list--dropdown {
    background: white;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.choices.pet-type-choices .choices__item--choice {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.choices.pet-type-choices .choices__item--choice:last-child {
    border-bottom: none;
}

.choices.pet-type-choices .choices__item--choice:hover {
    background: #f8f9fa;
    color: #333;
}

.choices.pet-type-choices .choices__item--choice.is-highlighted {
    background: #CBEAF2;
    color: white;
}

.choices.pet-type-choices .choices__button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Form Validation Styles */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input {
    position: relative;
}

.error {
    color: #e74c3c;
    font-size: 10px;
    /*margin-top: 5px;*/
    display: block;
    opacity: 1;
    transform: translateY(0);
    text-align: left;
    position: absolute;
}

.form-group input.error,
.form-group select.error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

.form-group input.valid,
.form-group select.valid {
    border-color: #CBEAF2 !important;
    /*box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1) !important;*/
}

/* Loading animation */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

.loading .submit-btn {
    background: #ccc;
}

.loading .submit-btn::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
