header {
    text-align: center;
    padding: 10px 0 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #677AE4;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-align: justify;   /* This aligns both left and right */
    text-justify: inter-word; /* Optional: improves spacing */
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #1a202c;
    letter-spacing: -0.03em;
}

.subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 10px;
    line-height: 1.7;
    font-weight: 400;
}

.domains-section {
    margin: 10px 0;
    padding: 10px 0;
}

.section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    margin-bottom: 30px;
    text-align: center;
}

.domains-grid {
    display: grid;
    gap: 20px;
    max-width: 750px;
    margin: 0 auto;
}

.domain-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.domain-card:hover {
    transform: translateY(-8px);
    border-color: #677AE4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.domain-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.domain-icon {
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    /* border-radius: 16px; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #677AE4;
    flex-shrink: 0;
    /* box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3); */
}

.domain-name {
    font-size: 22px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 4px;
}

.domain-ext {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.domain-status {
    background: #8FBC8B;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.contact-section {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 30px;
    padding: 30px 10px;
    max-width: 750px;
    margin: 60px auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.contact-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
    text-align: center;
    color: #1a202c;
}

.contact-subtitle {
    color: #64748b;
    text-align: center;
    margin-bottom: 30px;
    font-size: 15px;
}

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

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 10px 10px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    color: #1a202c;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.form-input::placeholder, .form-textarea::placeholder {
    color: #94a3b8;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
}

.form-select option {
    background: #ffffff;
    color: #1a202c;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background-color: #F19138;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.25rem 2.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 83, 12, 0.3);
    max-width: 300px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 83, 12, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

/* Spinner for loading state */
.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}


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

.divider {
    display: flex;
    align-items: center;
    margin: 35px 0;
    color: #94a3b8;
    font-size: 13px;
}

.divider::before, .divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

.divider span {
    padding: 0 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.direct-contact {
	display: flex;
	justify-content: center;
	gap: 24px; /* spacing between the two boxes */
	flex-wrap: wrap; /* ensures responsiveness on smaller screens */
	margin-top: 24px;
}

.phone-link {
	flex: 1 1 300px; /* allows equal growth, with a minimum width */
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	background: #ffffff;
	border: 2px solid #e2e8f0;
	padding: 16px 32px;
	border-radius: 14px;
	color: #667eea;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	transition: all 0.3s ease;
	max-width: 100%;
}

.phone-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
	border-color: #667eea;
}

