/* Reset and General Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	line-height: 1.6;
	color: #333;
	background: linear-gradient(135deg, #f8f1e9, #e6d9c6);
	font-family: 'Poppins', sans-serif;
}

/* Luxury Typography */
h1, h2, h3, h4 {
	font-family: 'Cinzel', serif;
	color: #fffbfb;
}

/* Container */
.container {
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 15px;
}

/* Header */
header {
	background: #1a1a1a;
	padding: 15px 0;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo {
	font-size: 28px;
	font-weight: 700;
	color: #d4af37;
}

/* Hamburger Menu */
.nav-toggle {
	display: none;
}

.nav-toggle-label {
	display: none;
	font-size: 24px;
	color: #d4af37;
	cursor: pointer;
}

header nav ul {
	list-style: none;
	display: flex;
	gap: 20px;
}

header nav ul li a {
	text-decoration: none;
	color: #fff;
	font-weight: 400;
	transition: color 0.3s;
}

header nav ul li a:hover, header nav ul li a.active {
	color: #d4af37;
}

.header-actions {
	display: flex;
	gap: 10px;
}

.login-actions {
	display: flex;
	gap: 10px;
	flex-wrap: nowrap;
	width: 100%;
}

.login-actions-center {
	display: flex;
	justify-content: center;
	gap: 40px;
	margin-bottom: 20px;
}

.btn {
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
}

.primary-btn {
	background: #d4af37;
	color: #1a1a1a;
	border: 2px solid #d4af37;
}

.primary-btn:hover {
	background: #1a1a1a;
	color: #d4af37;
}

.secondary-btn {
	background: transparent;
	color: #d4af37;
	border: 2px solid #d4af37;
}

.secondary-btn:hover {
	background: #d4af37;
	color: #1a1a1a;
}

.secondary-btn.active {
	background: #d4af37;
	color: #1a1a1a;
}

.btn-login-section {
	text-decoration: none;
	border-radius: 5px;
	justify-content: center;
	font-weight: 600;
	display: flex;
	align-items: center;
	font-size: 14px;
	width: 100%
}

.btn-login-section a {
	padding: 5px 20px;
}

.btn-login-section i {
	padding: 10px;
}

.d-none {
	display: none !important
}

.signup-btn {
	background: #d4af37;
	color: #1a1a1a;
}

.error {
	color: red;
	font-size: 16px;
}

.header__menu--items {
	list-style: none;
	position: relative;
}

.header__menu--items:hover .header__sub--menu {
	visibility: visible;
	margin-top: 0;
	opacity: 1;
}

.header__sub--menu {
	position: absolute;
	z-index: 9;
	top: 100%;
	left: 0;
	visibility: hidden;
	width: 220px;
	margin-top: 20px;
	padding: 10px;
	list-style: none;
	transition: all 0.3s ease;
	opacity: 0;
	background-color: #ffffff;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
}

.header__sub--menu__items {
	margin: 12px;
}

.header__sub--menu__link {
	display: block;
	color: #333;
	text-decoration: none;
}

.header__sub--menu__link i {
    margin-right: 12px; 
    vertical-align: middle;
    font-size: 20px; 
}

.header__sub--menu__link:hover {
	color: #d4af37;
}

.header__menu--items > a {
	color: white;
	text-decoration: none;
}

/* loader */
#global-loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.whirly-loader {
	width: 50px;
	height: 50px;
	border: 5px solid #ccc;
	border-top: 5px solid #d4af37;
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Login Section */
.login-section {
	padding: 50px 0;
	background: #1a1a1a;
	color: #fff;
}

.login-section h1 {
	font-size: 48px;
	text-align: center;
	margin-bottom: 10px;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
	text-align: center;
	color: #d4af37;
	font-size: 18px;
	margin-bottom: 30px;
	font-style: italic;
}

.signup-link {
	color: #d4af37;
	text-decoration: underline;
	font-weight: 600;
}

.signup-link:hover {
	color: #fff;
}

.center-link {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	color: #d4af37;
	text-decoration: underline;
}

.center-link a {
	text-decoration: none;
	color: #d4af37;
	font-weight: bold;
	font-size: 16px;
}

.center-link a:hover {
	text-decoration: underline;
}

.login-container {
	max-width: 600px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.05);
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.login-form h2, .social-login h2 {
	font-size: 24px;
	color: #fff;
	margin-bottom: 20px;
	text-align: center;
}

.otp-form, .otp-verify-form {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mobile-input {
	display: flex;
	gap: 10px;
}

.email-input {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.country-code {
	padding: 12px;
	border: 1px solid #d4af37;
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 14px;
	width: 120px;
}

.otp-form input[type="tel"],
.otp-form input[type="text"],
.otp-form input[type="password"],
.otp-verify-form input[type="text"] {
	padding: 12px;
	border: 1px solid #d4af37;
	border-radius: 5px;
	font-size: 14px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	flex: 1;
}

.otp-options {
	padding: 12px;
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

.otp-options label {
	display: flex;
	align-items: center;
	gap: 5px;
	color: #fff;
	font-size: 14px;
}

.otp-options input[type="radio"] {
	accent-color: #d4af37;
}

.form-btn {
	background: #d4af37;
	color: #1a1a1a;
	padding: 12px 20px;
	border: none;
	cursor: pointer;
	font-size: 14px;
}

.social-login {
	margin-top: 30px;
}

.social-buttons {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.social-btn {
	padding: 12px 20px;
	justify-content: center;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
	transition: opacity 0.3s;
}

.social-btn:hover {
	opacity: 0.9;
}

.google-btn {
	background: #fff;
	color: #000;
	border: 1px solid #dadce0;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.google-btn i {
	color: #4285f4;
	font-size: 18px;
}

.facebook-btn {
	background: #1877f2;
	color: #fff;
}

.facebook-btn i {
	font-size: 18px;
}

.linkedin-btn {
	background: #0a66c2;
	color: #fff;
}

.linkedin-btn i {
	font-size: 18px;
}

/* Footer */
footer {
	padding: 60px 0 20px;
	background: #1a1a1a;
	color: #fff;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

.footer-column h3 {
	font-size: 22px;
	color: #d4af37;
	margin-bottom: 20px;
}

.footer-column p {
	font-size: 14px;
}

.footer-column p a {
	color: #fff;
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 12px;
}

.footer-column ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
}

.footer-column ul li a:hover {
	color: #d4af37;
}

.social-links li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #333;
	padding-top: 20px;
}

.payment-methods img {
	height: 30px;
}

/* Mobile Optimization and Hamburger Menu */
@media ( max-width : 768px) {
	/* Header */
	.header-container {
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
	header .logo {
		font-size: 24px;
	}
	.nav-toggle-label {
		display: block;
	}
	header nav {
		display: none;
		width: 100%;
		position: absolute;
		top: 100%;
		left: 0;
		background: #1a1a1a;
		padding: 20px 0;
	}
	#nav-toggle:checked ~ nav {
		display: block;
	}
	header nav ul {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}
	.header-actions {
		display: none;
	}

	/* Login Section */
	.login-section {
		padding: 30px 0;
	}
	.login-section h1 {
		font-size: 36px;
	}
	.section-subtitle {
		font-size: 16px;
	}
	.login-container {
		padding: 30px;
	}
	.mobile-input {
		flex-direction: column;
	}
	.country-code {
		width: 100%;
	}
}


@media ( max-width : 480px) {
	.login-section h1 {
		font-size: 30px;
	}
	.section-subtitle {
		font-size: 14px;
	}
	.login-form h2, .social-login h2 {
		font-size: 20px;
	}
	/* .btn {
		padding: 8px 15px;
		font-size: 12px;
	} */
	.social-btn {
		padding: 10px 15px;
		font-size: 12px;
	}
}