/* Zahra landing css */

.ts-contact-acc-content {
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(255, 255, 255, 0.03);
	border-radius: 0 0 20px 20px;
	margin-top: -20px;
	margin-bottom: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-top: none;
}

.ts-contact-acc-inner {
	padding: 30px 20px 20px;
	display: flex;
	gap: 10px;
}

.ts-contact-acc-inner a {
	flex: 1;
	text-align: center;
	padding: 10px;
	border-radius: 12px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	text-decoration: none;
	color: #fff;
	font-size: 0.9rem;
	transition: all .25s ease;
}

.ts-contact-acc-inner a:hover {
	background: rgba(37,99,235,0.25);
	border-color: rgba(37,99,235,0.6);
}

#contact-toggle:checked + .ts-glass-card {
	border-radius: 20px 20px 0 0;
	background: rgba(255,255,255,0.1);
}

#contact-toggle:checked + .ts-glass-card + .ts-contact-acc-content {
	max-height: 200px;
}

.ts-contact-card {
	flex-direction: column;
	align-items: stretch;
}

.ts-contact-header {
	display: flex;
	align-items: center;
	margin-bottom: 14px;
}

.ts-contact-phones {
	display: flex;
	gap: 10px;
}

.ts-phone-link {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px;
	border-radius: 12px;
	font-size: 0.85rem;
	text-decoration: none;
	color: #fff;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	transition: all .25s ease;
}

.ts-phone-link:hover {
	background: rgba(37,99,235,0.25);
	border-color: rgba(37,99,235,0.6);
}

.ts-bio-main-container {
	direction: rtl;
	min-height: 100vh;
	background: #06122a radial-gradient(circle at center, #0a1f44 0%, #020817 100%);
	background-image: 
		linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
		radial-gradient(circle at center, #0a1f44 0%, #020817 100%);
	background-size: 40px 100%, 100% 100%;
	position: relative;
	padding: 40px 20px;
}

.ts-bio-wrapper {
	max-width: 480px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.ts-header-glass {
	margin-bottom: 40px;
	text-align: center;
}

.ts-logo-box {
	width: 120px;
	height: 120px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 30px rgba(37, 99, 235, 0.3);
	border: 4px solid rgba(255, 255, 255, 0.1);
}

.ts-logo-img { width: 85%; height: auto; }
.ts-main-title { color: #ffffff; font-size: 1.3rem; font-weight: 800; margin-bottom: 8px; }
.ts-main-subtitle { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }


.ts-glass-card {
	display: flex;
	align-items: center;
	padding: 14px 18px;
	margin-bottom: 16px;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	text-decoration: none !important;
	transition: all 0.3s ease;
	cursor: pointer;
	color: white;
}

.ts-glass-card:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.25);
}

.ts-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 15px;
	background: rgba(255, 255, 255, 0.08);
}

.ts-card-info { text-align: right; flex-grow: 1; }
.ts-card-name { display: block; font-size: 1rem; font-weight: 600; }
.ts-card-sub { display: block; font-size: 0.75rem; color: rgba(255, 255, 255, 0.5); margin-top: 2px; }


.ts-acc-trigger { display: none; }
.ts-acc-content {
	max-height: 0;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(255, 255, 255, 0.03);
	border-radius: 0 0 20px 20px;
	margin-top: -20px;
	margin-bottom: 16px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-top: none;
}

.ts-acc-inner { padding: 30px 20px 20px; color: rgba(255,255,255,0.9); font-size: 0.9rem; line-height: 1.8; text-align: right; }

.ts-acc-trigger:checked + .ts-glass-card { border-radius: 20px 20px 0 0; background: rgba(255, 255, 255, 0.1); }
.ts-acc-trigger:checked + .ts-glass-card + .ts-acc-content { max-height: 200px; padding-top: 10px; }
.ts-acc-trigger:checked + .ts-glass-card .ts-arrow-icon { transform: rotate(-90deg); }

.ts-arrow-icon { transition: transform 0.3s ease; color: rgba(255,255,255,0.3); }


.ts-contact-container {
	margin-top: 30px;
	padding: 20px;
	background: rgba(37, 99, 235, 0.1);
	border: 1px solid rgba(37, 99, 235, 0.2);
	border-radius: 24px;
	backdrop-filter: blur(10px);
}

.ts-contact-title {
	color: #60a5fa;
	font-size: 0.85rem;
	font-weight: 700;
	margin-bottom: 15px;
	display: block;
}

.ts-phone-row {
	display: flex;
	gap: 10px;
}

.ts-phone-btn {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 12px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	text-decoration: none !important;
	color: white;
	transition: 0.3s;
}

.ts-phone-btn:hover { background: #2563eb; border-color: #3b82f6; }
.ts-phone-num { font-size: 0.95rem; font-weight: 700; letter-spacing: 1px; margin-top: 5px; }
.ts-phone-label { font-size: 0.7rem; opacity: 0.6; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }
.ts-animate { animation: fadeInUp 0.5s ease backwards; }

/* Zahra landing css */