/* ==========================================================================
   PREMIUM HEADER & FOOTER DESIGN
   Award-Winning Legal Website - 2024
   ========================================================================== */

/* ===== PREMIUM HEADER ===== */

/* Glassmorphism Header */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled {
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

.site-header.hidden {
	transform: translateY(-100%);
}

/* Premium Top Bar */
.header-top-bar {
	background: linear-gradient(135deg, #1A202C 0%, #2C3E50 100%);
	padding: 10px 0;
	position: relative;
	overflow: hidden;
}

.header-top-bar::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
	animation: shimmer 8s infinite;
}

@keyframes shimmer {
	0% { left: -100%; }
	100% { left: 100%; }
}

.header-top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-contact-info {
	display: flex;
	gap: 24px;
	align-items: center;
}

.contact-link {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.3s;
	padding: 6px 12px;
	border-radius: 6px;
}

.contact-link:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #FF6B35;
	text-decoration: none;
}

.contact-link .icon {
	color: #FF6B35;
}

.office-hours {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.8);
	font-size: 13px;
}

.header-social .social-links {
	display: flex;
	gap: 8px;
}

.header-social .social-link {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.9);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-social .social-link:hover {
	background: #FF6B35;
	color: #fff;
	transform: translateY(-3px) scale(1.1);
	box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Premium Main Header */
.header-main {
	padding: 16px 0;
	background: transparent;
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* Premium Logo */
.site-logo-link {
	display: block;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo-link:hover {
	transform: scale(1.05);
}

.logo-acronym {
	display: flex;
	gap: 2px;
	font-size: 36px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 1px;
}

.logo-letter {
	display: inline-block;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo-link:hover .logo-letter {
	animation: letterPop 0.5s ease;
}

@keyframes letterPop {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}

.site-logo-link:hover .logo-l { animation-delay: 0s; }
.site-logo-link:hover .logo-o { animation-delay: 0.1s; }
.site-logo-link:hover .logo-s { animation-delay: 0.2s; }
.site-logo-link:hover .logo-a { animation-delay: 0.3s; }

.logo-l, .logo-s, .logo-a {
	color: #1A202C;
}

.logo-o {
	color: #FF6B35;
	position: relative;
}

.logo-o::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.3s;
}

.site-logo-link:hover .logo-o::after {
	opacity: 1;
	animation: pulse 1.5s ease-in-out infinite;
}

.logo-full-name {
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 1.5px;
	color: #1A202C;
	text-transform: uppercase;
	margin-top: 4px;
	display: block;
}

/* Premium Navigation */
.nav-wrapper {
	display: flex;
	align-items: center;
}

.primary-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 8px;
}

.primary-menu > li {
	position: relative;
}

.primary-menu > li > a {
	display: flex;
	align-items: center;
	padding: 12px 20px;
	color: #1A202C;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.primary-menu > li > a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 90, 0.1) 100%);
	opacity: 0;
	transition: opacity 0.3s;
	z-index: -1;
}

.primary-menu > li > a:hover::before,
.primary-menu .current-menu-item > a::before {
	opacity: 1;
}

.primary-menu > li > a:hover,
.primary-menu .current-menu-item > a {
	color: #FF6B35;
	text-decoration: none;
	transform: translateY(-2px);
}

/* Premium Header Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: 24px;
}

.search-toggle {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 2px solid rgba(26, 32, 44, 0.1);
	border-radius: 50%;
	color: #1A202C;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.search-toggle::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
	opacity: 0;
	transition: opacity 0.3s;
	border-radius: 50%;
}

.search-toggle:hover::before {
	opacity: 1;
}

.search-toggle:hover {
	border-color: transparent;
	color: #fff;
	transform: rotate(90deg) scale(1.1);
}

.search-toggle .search-icon {
	position: relative;
	z-index: 1;
}

/* Premium CTA Button */
.header-cta-button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
	position: relative;
	overflow: hidden;
}

.header-cta-button::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}

.header-cta-button:hover::before {
	width: 300px;
	height: 300px;
}

.header-cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
	text-decoration: none;
	color: #fff;
}

.header-cta-button .cta-icon {
	position: relative;
	z-index: 1;
	transition: transform 0.3s;
}

.header-cta-button:hover .cta-icon {
	animation: shake 0.5s ease;
}

@keyframes shake {
	0%, 100% { transform: rotate(0deg); }
	25% { transform: rotate(-10deg); }
	75% { transform: rotate(10deg); }
}

.header-cta-button .cta-text {
	position: relative;
	z-index: 1;
}

/* Reading Progress Bar */
.reading-progress-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	background: linear-gradient(90deg, #FF6B35 0%, #FF8C5A 50%, #FFD700 100%);
	width: 0%;
	transition: width 0.1s ease;
	box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

/* ===== PREMIUM FOOTER ===== */

/* Pre-Footer CTA */
.pre-footer-cta {
	background: linear-gradient(135deg, #1A202C 0%, #2C3E50 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}

.pre-footer-cta::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -50%;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
	animation: float 10s ease-in-out infinite;
}

.pre-footer-cta .container {
	position: relative;
	z-index: 1;
}

.cta-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
}

.cta-title {
	font-size: 42px;
	font-weight: 900;
	color: #fff;
	margin-bottom: 16px;
	line-height: 1.2;
}

.cta-description {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.7;
	max-width: 600px;
}

.cta-actions {
	display: flex;
	gap: 16px;
	flex-shrink: 0;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 32px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 16px;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.cta-button.primary {
	background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
	color: #fff;
	box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.cta-button.primary:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
	color: #fff;
	text-decoration: none;
}

.cta-button.secondary {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #fff;
}

.cta-button.secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.5);
	transform: translateY(-4px);
	color: #fff;
	text-decoration: none;
}

/* Main Footer */
.site-footer {
	background: #1A202C;
	color: rgba(255, 255, 255, 0.9);
	position: relative;
	overflow: hidden;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	pointer-events: none;
}

.footer-main {
	padding: 100px 0 60px;
	position: relative;
	z-index: 1;
}

.footer-widgets {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-widget {
	animation: fadeInUp 0.8s ease forwards;
	opacity: 0;
}

.footer-widget:nth-child(1) { animation-delay: 0.1s; }
.footer-widget:nth-child(2) { animation-delay: 0.2s; }
.footer-widget:nth-child(3) { animation-delay: 0.3s; }
.footer-widget:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.widget-title {
	font-size: 20px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 24px;
	position: relative;
	padding-bottom: 12px;
}

.widget-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #FF6B35 0%, #FF8C5A 100%);
	border-radius: 2px;
}

/* Footer Logo */
.footer-logo {
	margin-bottom: 24px;
}

.footer-logo .logo-l,
.footer-logo .logo-s,
.footer-logo .logo-a {
	color: #fff;
}

.footer-logo .logo-o {
	color: #FF6B35;
}

.footer-logo .logo-full-name {
	color: rgba(255, 255, 255, 0.9);
}

.footer-description {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 24px;
}

/* Trust Badges */
.trust-badges {
	margin-bottom: 24px;
}

.badge-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.badge-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	border-left: 3px solid #FF6B35;
	transition: all 0.3s;
}

.badge-item:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateX(5px);
}

.badge-icon {
	color: #FF6B35;
	flex-shrink: 0;
}

/* Footer Social */
.footer-social {
	margin-top: 32px;
}

.social-title {
	font-size: 14px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-social .social-links {
	display: flex;
	gap: 12px;
}

.footer-social .social-link {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	color: rgba(255, 255, 255, 0.8);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.footer-social .social-link::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
	opacity: 0;
	transition: opacity 0.3s;
	border-radius: 50%;
}

.footer-social .social-link:hover::before {
	opacity: 1;
}

.footer-social .social-link:hover {
	color: #fff;
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.footer-social .social-link svg {
	position: relative;
	z-index: 1;
}

/* Footer Menu */
.footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu li {
	margin-bottom: 12px;
}

.footer-menu a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 15px;
	transition: all 0.3s;
	padding: 6px 0;
}

.footer-menu a:hover {
	color: #FF6B35;
	padding-left: 8px;
	text-decoration: none;
}

.footer-menu .menu-icon {
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.3s;
	color: #FF6B35;
}

.footer-menu a:hover .menu-icon {
	opacity: 1;
	transform: translateX(0);
}

/* Footer Contact */
.footer-contact-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-item {
	display: flex;
	gap: 16px;
	padding: 16px;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 12px;
	border-left: 3px solid transparent;
	transition: all 0.3s;
}

.contact-item:hover {
	background: rgba(255, 255, 255, 0.06);
	border-left-color: #FF6B35;
	transform: translateX(5px);
}

.contact-icon {
	color: #FF6B35;
	flex-shrink: 0;
	margin-top: 2px;
}

.contact-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.contact-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.6);
}

.contact-link {
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	transition: color 0.3s;
}

.contact-link:hover {
	color: #FF6B35;
	text-decoration: none;
}

.contact-text {
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
	line-height: 1.6;
}

/* Newsletter */
.newsletter-signup {
	margin-top: 32px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 16px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 8px;
}

.newsletter-description {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 16px;
}

.newsletter-form .form-group {
	display: flex;
	gap: 8px;
}

.newsletter-form input {
	flex: 1;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	color: #fff;
	font-size: 14px;
	transition: all 0.3s;
}

.newsletter-form input:focus {
	outline: none;
	background: rgba(255, 255, 255, 0.15);
	border-color: #FF6B35;
	box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
	border: none;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-form button:hover {
	transform: translateX(4px) scale(1.1);
	box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Footer Bottom */
.footer-bottom {
	padding: 32px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 1;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 24px;
}

.footer-copyright p {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 13px;
}

.footer-legal a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-legal a:hover {
	color: #FF6B35;
	text-decoration: none;
}

.footer-legal .separator {
	color: rgba(255, 255, 255, 0.3);
}

.footer-credits {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
}

.footer-credits a {
	color: #FF6B35;
	text-decoration: none;
	transition: opacity 0.3s;
}

.footer-credits a:hover {
	opacity: 0.8;
}

/* Back to Top Button */
.back-to-top {
	position: fixed;
	bottom: 40px;
	right: 40px;
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
	border: none;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(20px) scale(0.8);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 9998;
	box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.back-to-top.visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.back-to-top:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6);
}

.back-to-top::before {
	content: '';
	position: absolute;
	inset: -3px;
	border-radius: 50%;
	background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
	opacity: 0.3;
	animation: pulse 2s ease-in-out infinite;
}

/* Premium Notification */
.premium-notification {
	position: fixed;
	top: 100px;
	right: 40px;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	padding: 20px 24px;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 10000;
	transform: translateX(400px);
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border-left: 4px solid #FF6B35;
}

.premium-notification.show {
	transform: translateX(0);
	opacity: 1;
}

.premium-notification.success {
	border-left-color: #10B981;
}

.premium-notification.success .notification-icon {
	color: #10B981;
}

.premium-notification.error {
	border-left-color: #EF4444;
}

.premium-notification.error .notification-icon {
	color: #EF4444;
}

.notification-content {
	display: flex;
	align-items: center;
	gap: 12px;
}

.notification-icon {
	flex-shrink: 0;
	color: #FF6B35;
}

.notification-message {
	font-size: 14px;
	font-weight: 600;
	color: #1A202C;
}

/* Ripple Effect */
.ripple-effect {
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	width: 20px;
	height: 20px;
	transform: translate(-50%, -50%);
	pointer-events: none;
	animation: ripple-animation 0.6s ease-out;
}

@keyframes ripple-animation {
	to {
		transform: translate(-50%, -50%) scale(20);
		opacity: 0;
	}
}

/* Responsive Design */
@media (max-width: 1200px) {
	.footer-widgets {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.header-top-bar {
		display: none;
	}
	
	.nav-wrapper {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		max-width: 400px;
		height: 100vh;
		background: linear-gradient(180deg, #1A202C 0%, #2C3E50 100%);
		padding: 80px 40px 40px;
		transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 9999;
		overflow-y: auto;
		box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
	}
	
	.main-navigation.toggled .nav-wrapper {
		right: 0;
	}
	
	.primary-menu {
		flex-direction: column;
		gap: 0;
	}
	
	.primary-menu > li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	
	.primary-menu > li > a {
		color: #fff;
		padding: 20px 0;
		border-radius: 0;
		font-size: 18px;
	}
	
	.primary-menu > li > a::before {
		display: none;
	}
	
	.primary-menu > li > a:hover,
	.primary-menu .current-menu-item > a {
		background: transparent;
		color: #FF6B35;
		transform: translateX(10px);
	}
	
	.mobile-menu-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background: rgba(0, 0, 0, 0.7);
		backdrop-filter: blur(5px);
		opacity: 0;
		visibility: hidden;
		transition: all 0.3s;
		z-index: 9998;
	}
	
	.mobile-menu-overlay.active {
		opacity: 1;
		visibility: visible;
	}
	
	.menu-toggle {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		width: 48px;
		height: 48px;
		background: transparent;
		border: 2px solid rgba(26, 32, 44, 0.1);
		border-radius: 8px;
		cursor: pointer;
		transition: all 0.3s;
		padding: 8px;
	}
	
	.menu-toggle:hover {
		background: rgba(255, 107, 53, 0.1);
		border-color: #FF6B35;
	}
	
	.menu-icon {
		display: flex;
		flex-direction: column;
		gap: 4px;
	}
	
	.menu-line {
		width: 24px;
		height: 2px;
		background: #1A202C;
		border-radius: 2px;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	}
	
	.menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
		background: #fff;
	}
	
	.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
		opacity: 0;
	}
	
	.menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
		background: #fff;
	}
	
	.menu-text {
		display: none;
	}
	
	.cta-content {
		flex-direction: column;
		text-align: center;
	}
	
	.cta-actions {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.footer-widgets {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.premium-notification {
		right: 20px;
		left: 20px;
		top: 80px;
	}
	
	.header-actions {
		gap: 8px;
		margin-left: 12px;
	}
	
	.header-cta-button {
		padding: 12px 20px;
		font-size: 14px;
	}
	
	.header-cta-button .cta-text {
		display: none;
	}
	
	.cta-title {
		font-size: 32px;
	}
	
	.cta-actions {
		flex-direction: column;
		width: 100%;
	}
	
	.cta-button {
		width: 100%;
		justify-content: center;
	}
	
	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
	}
	
	.footer-legal {
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.back-to-top {
		bottom: 24px;
		right: 24px;
		width: 48px;
		height: 48px;
	}
}

