        :root {
            /*--primary: #6A825C;*/
			--primary: #292F24;
            --primary-dark: #5A252C;
            --primary-light: #8B3A44;
            --text-dark: #1a1a1a;
            --text-light: #898989;
            --border: #e0e0e0;
            --bg-light: #f8f8f8;
            --success: #2d7a3e;
            --error: #d32f2f;
			--body-bg-gradient-color: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
			--body-bg-color:#231F20;
			--wpr-bg-87ff357d-3b00-4671-8566-eee90311300a: url(../images/form_button_bg.svg);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            min-height: 100vh;
            color: var(--text-light);
            line-height: 1.6;
			background-color: var(--body-bg-color);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: 40px;
            align-items: start;
        }

        .container-full {
            display: grid;
            grid-template-columns: 1fr;
            gap: 0px;
            align-items: start;
            background-color: #000;
			display: none;
        }

        .bottom-text {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 0px;
            align-items: center;
            text-align: center;
        }

        .bottom-text h3, .bottom-text p{
            margin-bottom: 20px;
        }

        .bottom-text h3 {
            font-family: 'Nunito', 'Crimson Pro', serif;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-light);
        }

        /* Sidebar */
        .sidebar {
            position: sticky;
            top: 40px;
        }

        .progress-card {
            background: black;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin-bottom: 24px;
			border:1px solid #4e4e4e;
        }

        .progress-card h3 {
            font-family: 'Nunito', 'Crimson Pro', serif;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-light);
        }

        .progress-step {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 0;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .progress-step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 19px;
            top: 56px;
            width: 2px;
            height: 34px;
            background: var(--border);
            transition: background 0.3s ease;
        }

        .progress-step.completed::after {
            background: var(--primary);
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 16px;
            background: white;
            color: var(--text-light);
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .progress-step.active .step-number {
            background: var(--bg-light);
            border-color: #fff;
            color: var(--text-dark);
            box-shadow: 0 4px 12px rgba(114, 47, 55, 0.3);
        }

        .progress-step.completed .step-number {
            background: var(--light-bg);
            border-color: #fff;
            color: var(--text-dark);
        }

        .progress-step.completed .step-number::before {
            content: '';
        }

        .step-label {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-light);
            transition: color 0.3s ease;
        }

        .progress-step.active .step-label {
            color: #fff;
            font-weight: 600;
        }

        .progress-step.completed .step-label {
            color: #fff;
        }

        .info-card {
            background: linear-gradient(135deg, #fffbf0 0%, #fff8e6 100%);
            border-radius: 16px;
            padding: 28px;
            border: 1px solid #f0e6d2;
			display:none;
        }

        .info-card h3 {
            font-family: 'Nunito', 'Crimson Pro', serif;
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .info-item {
            display: flex;
            gap: 16px;
            margin-bottom: 20px;
        }

        .info-item:last-child {
            margin-bottom: 0;
        }

        .info-icon {
            width: 32px;
            height: 32px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            flex-shrink: 0;
        }

        .info-content h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-dark);
        }

        .info-content p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.5;
        }

        /* Main Form Area */
        .form-container {
            background: black;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            min-height: 600px;
        }

        .form-header {
            background: var(--primary);
            color: white;
            padding: 32px 40px;
            position: relative;
        }

        .form-header h2 {
            font-family: 'Nunito', 'Crimson Pro', serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .form-header p {
            font-size: 15px;
            opacity: 0.9;
        }

        .step-indicator {
            position: absolute;
            top: 32px;
            right: 40px;
            display: flex;
            gap: 8px;
        }

        .step-dot {
            width: 40px;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .step-dot.active {
            /*background: #f4c542;*/
			background: #6A825C;
        }

        .step-dot.completed {
            background: white;
        }

        .form-content {
            padding: 48px 40px;
        }

        .form-step {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .form-step.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title {
            font-family: 'Nunito', 'Crimson Pro', serif;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 28px;
            color: var(--text-light);
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 24px;
        }

        label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--text-light);
        }

        label .required {
            color: var(--primary);
            margin-left: 2px;
        }

        input[type="text"],
        input[type="email"],
        input[type="tel"],
        textarea,
        select {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            background: white;
        }

        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.1);
        }

        textarea {
            resize: vertical;
            min-height: 100px;
        }

        .phone-input {
            position: relative;
        }

        .iti {
            width: 100%;
        }

        .iti__flag-container {
            padding: 0;
            width: 90px;
        }

        .iti__selected-flag {
            padding: 0 0 0 16px;
            height: 52px;
        }

        .iti input {
            width: 100%;
            padding: 14px 16px 14px 70px;
            border: 2px solid var(--border);
            border-radius: 8px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
        }

        .iti input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.1);
        }

        .iti__country-list {
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            max-height: 200px;
        }

        .otp-container {
            text-align: center;
            padding: 40px 0;
        }

        .otp-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ffe8eb 0%, #ffd6db 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 32px;
            font-size: 36px;
        }

        .otp-title {
            font-family: 'Nunito', 'Crimson Pro', serif;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .otp-description {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 32px;
        }

        .otp-number {
            color: var(--primary);
            font-weight: 600;
        }

        .otp-inputs {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-bottom: 24px;
        }

        .otp-input {
            width: 56px;
            height: 56px;
            text-align: center;
            font-size: 24px;
            font-weight: 600;
            border: 2px solid var(--border);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .otp-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(114, 47, 55, 0.1);
        }

        .resend-link {
            color: var(--primary);
            font-size: 14px;
            cursor: pointer;
            text-decoration: underline;
            margin-bottom: 24px;
            display: inline-block;
        }

        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: #e8f5e9;
            color: var(--success);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 500;
            margin-top: 8px;
        }

        .radio-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 16px;
            margin-bottom: 32px;
        }

        .radio-option {
            position: relative;
        }

        .radio-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }

        .radio-label {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            border: 2px solid var(--border);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
        }

        .radio-option input[type="radio"]:checked + .radio-label {
            border-color: var(--primary);
            background: rgba(114, 47, 55, 0.04);
        }

        .radio-circle {
            width: 20px;
            height: 20px;
            border: 2px solid var(--border);
            border-radius: 50%;
            position: relative;
            transition: all 0.3s ease;
        }

        .radio-option input[type="radio"]:checked + .radio-label .radio-circle {
            border-color: var(--primary);
        }

        .radio-option input[type="radio"]:checked + .radio-label .radio-circle::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 10px;
            height: 10px;
            background: var(--primary);
            border-radius: 50%;
        }

        .helper-text {
            font-size: 13px;
            color: var(--text-light);
            margin-top: 6px;
        }

        .file-upload {
            border: 2px dashed var(--border);
            border-radius: 12px;
            padding: 40px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .file-upload:hover {
            border-color: var(--primary);
            background: rgba(114, 47, 55, 0.02);
        }

        .file-upload.dragover {
            border-color: var(--primary);
            background: rgba(114, 47, 55, 0.06);
        }

        .upload-icon {
            width: 48px;
            height: 48px;
            background: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            color: white;
            font-size: 24px;
        }

        .upload-text {
            font-size: 15px;
            color: var(--text-light);
            margin-bottom: 4px;
        }

        .upload-subtext {
            font-size: 13px;
            color: var(--text-light);
        }

        .file-list {
            margin-top: 16px;
        }

        .file-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 16px;
            background: #f0f0f0;
            border-radius: 8px;
            margin-bottom: 8px;
        }

        .file-name {
            font-size: 14px;
            color: var(--text-dark);
        }

        .file-remove {
            color: var(--error);
            cursor: pointer;
            font-size: 18px;
        }

        .info-box {
            background: #fffbf0;
            border: 1px solid #f0e6d2;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 32px;
        }

        .info-box p {
            font-size: 14px;
            color: var(--text-dark);
            line-height: 1.6;
        }

        .info-box strong {
            color: var(--primary);
        }

        /* Review Section */
        .review-section {
            background: #fafafa;
            border-radius: 12px;
            padding: 28px;
            margin-bottom: 24px;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .review-title {
            font-family: 'Nunito', 'Crimson Pro', serif;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .edit-link {
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: underline;
        }

        .review-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .review-item {
            background: white;
            padding: 16px;
            border-radius: 8px;
        }

        .review-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-light);
            margin-bottom: 6px;
        }

        .review-value {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
        }

        .review-value.empty {
            color: var(--text-light);
            font-style: italic;
        }

        /* Buttons */
        .form-actions {
            display: flex;
            gap: 16px;
            margin-top: 40px;
            padding-top: 32px;
            border-top: 1px solid var(--border);
        }

        .btn {
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            flex: 1;
            width: 100%;
			
			display: inline-block;
			padding: 15px 30px;
			background-image: var(--wpr-bg-87ff357d-3b00-4671-8566-eee90311300a);
			background-size: cover;
			background-position: center;
			background-repeat: no-repeat;
			color: #fff;
			text-decoration: none;
			font-size: 16px;
			font-weight: bold;
			border: none;
			border-radius: 8px;
			transition: all 0.3s ease-in-out;
			letter-spacing: 3px;
			border-radius: 6px !important;
			text-transform: uppercase;
			font-weight: 500;
			font-size: 1rem;
			border: 1px solid rgb(255 255 255 / 50%) !important;
			background-color: transparent !important;
			cursor: pointer;
        }

        .btn-primary:hover {
            box-shadow: 0 4px 12px rgba(114, 47, 55, 0.3);
        }

        .btn-secondary {
            background: white;
            color: var(--text-dark);
            border: 2px solid var(--border);
        }

        .btn-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Success Page */
        .success-container {
            display: none;
            text-align: center;
            padding: 80px 40px;
        }

        .success-container.active {
            display: block;
            animation: fadeIn 0.6s ease;
        }

        .success-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 32px;
            font-size: 64px;
        }

        .success-title {
            font-family: 'Nunito', 'Crimson Pro', serif;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-light);
        }

        .success-message {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .reference-box {
            background: #ffe8eb;
            border-radius: 12px;
            padding: 28px;
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .reference-label {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-light);
            margin-bottom: 8px;
        }

        .reference-number {
            font-family: 'Nunito', 'Crimson Pro', serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--primary);
        }

        .success-info {
            background: #f8f8f8;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-align: left;
        }

        .success-info p {
            font-size: 15px;
            color: var(--text-dark);
            line-height: 1.6;
            margin-bottom: 12px;
        }

        .success-info p:last-child {
            margin-bottom: 0;
        }

        .btn-outline {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        .hidden {
            display: none !important;
        }

        /* Header Section */
        .hero-header {
            /*
			background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
			
			min-height: 70vh;
			margin-bottom: 60px;
			background: url(../images/land-image.webp) no-repeat;
			background-size: cover;
			*/
            color: white;
            padding: 20px 40px;
            display: flex;
            align-items: end;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr;
            gap: 80px;
            align-items: center;
            justify-content: center;
            /*background-color: rgba(0, 0, 0, 0.5);*/
            padding: 20px 40px;
            border-radius: 20px;
        }

        .hero-left {
            /* max-width: 600px; */
            max-width: 100%;
            display: flex;
            justify-content: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 32px;
            display: none;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: #f4c542;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }


        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(1.2);
            }
        }

        .hero-title {
			/*
            font-family: 'Nunito', 'Crimson Pro', serif;
            font-size: 56px;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 0px;
			text-transform: uppercase;
			*/
			
			font-family: "Nunito", Sans-serif;
			font-size: 28px;
			font-weight: 400;
			text-transform: uppercase;
			line-height: 60px;
			letter-spacing: 0.45em;
			text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.63);
			color: #FFFFFF;
        }

        .hero-title .highlight {
            color: #f4c542;
            /*font-style: italic;*/
        }

        .hero-description {
            font-size: 17px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 48px;
            display: none;
        }

        .hero-stats {
            display: flex;
            gap: 60px;
            display: none;
        }

        .stat-item {
            position: relative;
            padding-left: 20px;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: #f4c542;
            border-radius: 2px;
        }

        .stat-number {
            font-family: 'Nunito', 'Crimson Pro', serif;
            font-size: 48px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.4;
        }

        .hero-right {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 40px;
            display: none;
        }

        .how-it-works-title {
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 32px;
            color: rgba(255, 255, 255, 0.8);
        }

        .steps-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .step-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 0;
            position: relative;
        }

        .step-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 19px;
            top: 60px;
            width: 2px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
        }

        .step-number {
            width: 40px;
            height: 40px;
            background: rgba(244, 197, 66, 0.15);
            border: 2px solid #6A825C;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            color: #6A825C;
            flex-shrink: 0;
        }

        .step-text {
            font-size: 16px;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.95);
        }

.area-field {
  display: flex;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

/* Input field */
.area-field input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 14px;
  outline: none;
}

/* Dropdown */
.area-field select {
  border: none;
  border-left: 1px solid #ccc;
  padding: 10px;
  background: #f9f9f9;
  font-size: 14px;
  outline: none;
  cursor: pointer;
}

/* Optional hover/focus */
.area-field:focus-within {
  border-color: #0073e6;
  box-shadow: 0 0 0 2px rgba(0,115,230,0.1);
}

.declaration-box label{
    display: flex;
    align-items: start;
}

.declaration-box label input{
    margin-top: 5px;
    margin-right: 10px;
}

        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .hero-title {
                font-size: 42px;
            }

            .hero-stats {
                gap: 40px;
            }

            .stat-number {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .hero-header {
                padding: 0px 20px;
            }

            .hero-title {
                font-size: 24px;
				text-align: center;
				line-height: 1.5em;
            }

            .hero-stats {
                flex-direction: column;
                gap: 24px;
            }

            .hero-right {
                padding: 32px 24px;
            }
            .sidebar {
                display:none;
            }
			
			.step-indicator{
				right:unset;
			}
			
			.form-header h2{
				margin-top: 10px;
			}
        }

        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }

            .sidebar {
                position: static;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .review-grid {
                grid-template-columns: 1fr;
            }
        }
		