/* ============================================
   CUSTOM GIVE FORM LAYOUT STYLES
   ============================================ */

/* Page Wrapper */
.custom-give-page-wrapper {
	background: #f5f5f5;
	min-height: 100vh;
}

/* Hero Section */
.custom-give-hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 80px 20px;
	text-align: center;
	color: white;
	margin-bottom: 50px;
}

.custom-give-hero h1 {
	font-size: 48px;
	margin: 0;
	font-weight: 700;
	color: white;
}

/* Main Container */
.custom-give-main-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px 60px;
}

/* Two Column Grid */
.custom-give-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 40px;
	align-items: start;
}

/* Left Info Column */
.custom-give-info-column {
	background: white;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.08);
	position: sticky;
	top: 20px;
}

.form-description {
	margin-bottom: 30px;
	line-height: 1.7;
	color: #333;
}

.form-description h1,
.form-description h2,
.form-description h3 {
	color: #333;
	margin-top: 0;
}

.custom-info-box {
	padding: 25px;
	background: #f8f9fa;
	border-left: 4px solid #667eea;
	border-radius: 8px;
	margin-top: 25px;
}

.custom-info-box h3 {
	margin-top: 0;
	color: #667eea;
	font-size: 20px;
}

.custom-info-box p {
	margin-bottom: 0;
	line-height: 1.6;
}

/* Right Form Column */
.custom-give-form-column {
	background: white;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* ============================================
   FORM STYLING (Optional Enhancements)
   ============================================ */

/* Form Title */
.give-form-title {
	font-size: 28px;
	margin-bottom: 25px;
	color: #333;
}

/* Form Inputs */
.give-form input[type="text"],
.give-form input[type="email"],
.give-form input[type="tel"],
.give-form input[type="number"],
.give-form select,
.give-form textarea {
	padding: 14px;
	border: 2px solid #e5e5e5;
	border-radius: 8px;
	width: 100%;
	font-size: 16px;
	transition: border-color 0.3s;
	box-sizing: border-box;
}

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

/* Form Labels */
.give-form label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #333;
}

/* Donation Amount Buttons */
.give-donation-levels-wrap {
	margin-bottom: 20px;
}

.give-donation-levels-wrap label {
	background: #f8f9fa;
	border: 2px solid #e5e5e5;
	padding: 15px 20px;
	border-radius: 8px;
	transition: all 0.3s;
	cursor: pointer;
	margin-bottom: 10px;
	display: inline-block;
	text-align: center;
}

.give-donation-levels-wrap label:hover {
	border-color: #667eea;
	background: #f0f4ff;
}

.give-donation-levels-wrap input[type="radio"]:checked + label {
	border-color: #667eea;
	background: #667eea;
	color: white;
}

/* Custom Amount Input */
.give-donation-amount {
	margin: 20px 0;
}

.give-donation-amount input {
	font-size: 24px;
	font-weight: 600;
	padding: 15px;
}

/* Submit Button */
.give-submit-button-wrap {
	margin-top: 30px;
}

.give-submit-button-wrap input[type="submit"],
.give-submit-button-wrap button[type="submit"] {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 16px 40px;
	border: none;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	transition: all 0.3s;
}

.give-submit-button-wrap input[type="submit"]:hover,
.give-submit-button-wrap button[type="submit"]:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Multi-Step Progress Bar */
.give-multi-step-nav {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid #e5e5e5;
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding-left: 0;
}

.give-multi-step-nav li {
	background: #e5e5e5;
	color: #999;
	padding: 10px 20px;
	border-radius: 6px;
	flex: 1;
	margin: 0 5px;
	text-align: center;
	font-weight: 600;
	transition: all 0.3s;
}

.give-multi-step-nav li.active {
	background: #667eea;
	color: white;
}

.give-multi-step-nav li.complete {
	background: #28a745;
	color: white;
}

/* Form Sections */
.give-form-wrap {
	margin-bottom: 25px;
}

/* Payment Gateway Options */
.give-gateway-option-wrapper {
	margin: 20px 0;
}

.give-gateway-option {
	background: #f8f9fa;
	padding: 15px;
	border: 2px solid #e5e5e5;
	border-radius: 8px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: all 0.3s;
}

.give-gateway-option:hover {
	border-color: #667eea;
	background: #f0f4ff;
}

.give-gateway-option.give-gateway-option-selected {
	border-color: #667eea;
	background: #f0f4ff;
}

/* Loading States */
.give-loading-animation {
	text-align: center;
	padding: 20px;
}

/* Error Messages */
.give-error,
.give-errors {
	background: #f8d7da;
	color: #721c24;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	border-left: 4px solid #f5c6cb;
}

/* Success Messages */
.give-success {
	background: #d4edda;
	color: #155724;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
	border-left: 4px solid #c3e6cb;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
	.custom-give-grid {
		grid-template-columns: 1fr;
	}
	
	.custom-give-info-column {
		position: static;
		order: 2;
	}
	
	.custom-give-form-column {
		order: 1;
	}
	
	.custom-give-hero h1 {
		font-size: 36px;
	}
}

@media (max-width: 600px) {
	.custom-give-hero {
		padding: 50px 20px;
	}
	
	.custom-give-hero h1 {
		font-size: 28px;
	}
	
	.custom-give-form-column,
	.custom-give-info-column {
		padding: 25px;
	}
	
	.custom-give-main-container {
		padding: 20px 15px 40px;
	}
	
	.give-multi-step-nav {
		flex-direction: column;
	}
	
	.give-multi-step-nav li {
		margin: 5px 0;
	}
}

/* ============================================
   ADDITIONAL STYLING FOR BETTER UX
   ============================================ */

/* Required Field Indicator */
.give-required-indicator {
	color: #dc3545;
	margin-left: 4px;
}

/* Tooltip Styles */
.give-tooltip {
	position: relative;
	display: inline-block;
}

/* Form Footer */
.give-form-footer {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #e5e5e5;
	text-align: center;
	font-size: 14px;
	color: #666;
}

/* Privacy Policy Link */
.give-privacy-policy-agreement {
	font-size: 14px;
	color: #666;
	margin-top: 15px;
}

/* Checkbox Styling */
.give-form input[type="checkbox"] {
	width: auto;
	margin-right: 8px;
}

/* Terms Agreement */
.give-terms-agreement {
	background: #f8f9fa;
	padding: 15px;
	border-radius: 8px;
	margin: 20px 0;
}