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

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 10px;
	left: 50%;
	transform: translateX(-50%);
	width: 90%;
	max-width: 1400px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(15px);
	z-index: 1000;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

/* .navbar.scrolled {
	top: 10px;
	background: rgba(255, 255, 255, 0.8);
	backdrop-filter: blur(20px);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
} */

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
}

.nav-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
	text-decoration: none;
	transition: color 0.3s ease;
}

.navbar.scrolled .nav-logo {
	color: #2563eb;
}

.nav-logo-img {
	height: 40px;
	width: 40px;
	border-radius: 20%;
	object-fit: contain;
}

.nav-logo i {
	margin-right: 10px;
	font-size: 1.8rem;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 2rem;
}

.nav-link {
	text-decoration: none;
	color: white;
	font-weight: 500;
	transition: color 0.3s ease;
	position: relative;
}

.navbar.scrolled .nav-link {
	color: #333;
}

.nav-link:hover {
	color: #2563eb;
}

.nav-link::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: #2563eb;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
}

.bar {
	width: 25px;
	height: 3px;
	background: white;
	margin: 3px 0;
	transition: 0.3s;
}

.navbar.scrolled .bar {
	background: #333;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	position: relative;
	overflow: hidden;
	padding: 100px 0 80px;
}

.beta-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(251, 191, 36, 0.2);
	color: #fbbf24;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	border: 2px solid #fbbf24;
}

.accessibility-modes {
	display: flex;
	gap: 1rem;
	margin: 2rem 0;
	flex-wrap: wrap;
}

.mode-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	padding: 0.75rem 1rem;
	border-radius: 50px;
	color: white;
	font-size: 0.9rem;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

.mode-item:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.mode-item i {
	font-size: 1.1rem;
	color: #fbbf24;
}

.app-mockup-buttons {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
	justify-content: center;
}

.mockup-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	padding: 1rem;
	border-radius: 15px;
	color: white;
	font-size: 0.8rem;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	width: 110px;
	height: 80px;
	justify-content: center;
	text-align: center;
}

.mockup-btn i {
	font-size: 1.5rem;
	color: #fbbf24;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,96C1248,75,1344,53,1392,42.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
	background-size: cover;
}

.hero-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-content {
	color: white;
}

.hero-title {
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

.title-accent {
	color: #fbbf24;
}

.hero-subtitle {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn {
	padding: 12px 24px;
	border: none;
	border-radius: 50px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-primary {
	background: #fbbf24;
	color: #333;
}

.btn-primary:hover {
	background: #f59e0b;
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

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

.btn-secondary:hover {
	background: white;
	color: #764ba2;
	transform: translateY(-2px);
}

.hero-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

.phone-mockup {
	width: 300px;
	height: 600px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 40px;
	border: 3px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	animation: float 6s ease-in-out infinite;
}

@keyframes float {

	0%,
	100% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-20px);
	}
}

.phone-screen {
	text-align: center;
	color: white;
}

.app-icon {
	font-size: 4rem;
	margin-bottom: 1rem;
	color: #fbbf24;
}

.phone-screen h3 {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.phone-screen p {
	opacity: 0.8;
}

.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-size: 1.5rem;
	animation: bounce 2s infinite;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	40% {
		transform: translateX(-50%) translateY(-10px);
	}

	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

/* Section Styles */
section {
	padding: 80px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 4rem;
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 1rem;
}

.section-subtitle {
	font-size: 1.1rem;
	color: #666;
	max-width: 700px;
	margin: 0 auto;
}

/* About Section */
.about {
	background: #f8fafc;
}

.about-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text p {
	font-size: 1.1rem;
	margin-bottom: 1.5rem;
	color: #555;
}

.about-stats {
	display: flex;
	gap: 2rem;
	margin-top: 2rem;
}

.stat-item {
	text-align: center;
}

.stat-item h3 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2563eb;
	margin-bottom: 0.5rem;
}

.stat-item p {
	color: #666;
	font-weight: 500;
}

.feature-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.feature-card {
	background: white;
	padding: 2rem;
	border-radius: 15px;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-card i {
	font-size: 2.5rem;
	color: #2563eb;
	margin-bottom: 1rem;
}

.feature-card h4 {
	font-size: 1.1rem;
	color: #333;
}

.feature-card p {
	font-size: 0.9rem;
	color: #666;
	margin-top: 0.5rem;
}

.tech-stack {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #e2e8f0;
}

.tech-stack h4 {
	font-size: 1.1rem;
	color: #333;
	margin-bottom: 1rem;
}

.tech-items {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.tech-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #f8fafc;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.9rem;
	color: #555;
	border: 1px solid #e2e8f0;
}

.tech-item i {
	color: #2563eb;
}

/* Features Section */
.features {
	background: white;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.feature-item {
	text-align: center;
	padding: 2rem;
	border-radius: 15px;
	background: #f8fafc;
	transition: all 0.3s ease;
}

.feature-item:hover {
	background: white;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	transform: translateY(-5px);
}

.feature-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.feature-icon i {
	font-size: 2rem;
	color: white;
}

.feature-item h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 1rem;
}

.feature-item p {
	color: #666;
	line-height: 1.6;
}

/* Rights Information Section */
.rights {
	background: #f8fafc;
}

.rights-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.rights-item {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.rights-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.rights-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.rights-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.rights-icon i {
	font-size: 2rem;
	color: white;
}

.rights-item h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 1rem;
}

.rights-item p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.rights-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.rights-tag {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #f0f9ff;
	color: #0369a1;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 500;
	border: 1px solid #bae6fd;
}

.rights-tag i {
	font-size: 0.8rem;
}

/* Report/Help Section */
.report {
	background: white;
}

.report-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.report-methods {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.report-method {
	background: #f8fafc;
	padding: 2rem;
	border-radius: 20px;
	border: 2px solid #e2e8f0;
	transition: all 0.3s ease;
}

.report-method:hover {
	border-color: #2563eb;
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
	transform: translateY(-2px);
}

.report-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.report-icon i {
	font-size: 1.5rem;
	color: white;
}

.report-method h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 1rem;
}

.report-method p {
	color: #666;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.report-steps {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.step {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.step-number {
	width: 30px;
	height: 30px;
	background: #2563eb;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	font-size: 0.9rem;
}

.report-status {
	margin-top: 1rem;
}

.status-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 500;
}

.status-badge.upcoming {
	background: #fef3c7;
	color: #92400e;
	border: 1px solid #fde68a;
}

.report-features {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.feature-tag {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #f0fdf4;
	color: #166534;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 500;
	border: 1px solid #bbf7d0;
}

.report-process {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.process-card {
	background: #f8fafc;
	padding: 2rem;
	border-radius: 20px;
	border: 2px solid #e2e8f0;
}

.process-card h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 2rem;
}

.process-flow {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.process-step {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
	padding: 1rem;
	background: rgba(37, 99, 235, 0.05);
	border-radius: 15px;
	border-left: 4px solid #2563eb;
	transition: all 0.3s ease;
}

.process-step:hover {
	background: rgba(37, 99, 235, 0.1);
	transform: translateX(5px);
}

.process-icon {
	width: 50px;
	height: 50px;
	background: #2563eb;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.process-icon i {
	color: white;
	font-size: 1.2rem;
}

.process-step h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 0.5rem;
}

.process-step p {
	color: #666;
	line-height: 1.5;
	margin: 0;
}

.process-arrow {
	display: flex;
	justify-content: center;
	color: #2563eb;
	font-size: 1.5rem;
	margin: 0.5rem 0;
	align-self: center;
	transform: rotate(90deg);
}

.confirmation-demo h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
	margin-bottom: 1.5rem;
}

.confirmation-card {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
	padding: 2rem;
	border-radius: 20px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.confirmation-card::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle,
			rgba(255, 255, 255, 0.1) 0%,
			transparent 70%);
}

.success-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.confirmation-card h4 {
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
}

.tracking-info {
	margin-bottom: 1.5rem;
}

.tracking-info p {
	margin-bottom: 0.5rem;
	opacity: 0.9;
}

.tracking-id {
	background: rgba(255, 255, 255, 0.2);
	padding: 0.75rem 1.5rem;
	border-radius: 10px;
	font-family: "Courier New", monospace;
	font-size: 1.1rem;
	font-weight: 600;
	letter-spacing: 2px;
	display: inline-block;
	backdrop-filter: blur(10px);
}

.contact-btn {
	background: rgba(255, 255, 255, 0.2);
	color: white;
	border: 2px solid rgba(255, 255, 255, 0.3);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.contact-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

/* Mission Section */
.mission {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.mission .section-title,
.mission .section-subtitle {
	color: white;
}

.mission-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.mission-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 2.5rem;
	border-radius: 20px;
	text-align: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: transform 0.3s ease;
}

.mission-card:hover {
	transform: translateY(-5px);
}

.mission-icon {
	width: 70px;
	height: 70px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.mission-icon i {
	font-size: 2rem;
	color: #fbbf24;
}

.mission-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.mission-card p {
	opacity: 0.9;
	line-height: 1.6;
}

/* SDG Goals Section */
.sdg-section {
	background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
	padding: 5rem 0;
}

.sdg-goals {
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.sdg-goal {
	text-align: center;
	flex: 1;
	min-width: 200px;
	max-width: 250px;
}

.sdg-icon {
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.8rem;
	box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.sdg-icon:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}

.sdg-number {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #fbbf24;
	color: #1e293b;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 0.9rem;
	border: 3px solid white;
}

.sdg-goal h3 {
	font-size: 1.2rem;
	color: #1e293b;
	margin-bottom: 0.8rem;
	font-weight: 600;
}

.sdg-goal p {
	color: #64748b;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* Team Section */
.team {
	background: #f8fafc;
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
}

.team-member {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.team-member:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
	height: 250px;
	overflow: hidden;
}

.member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-member h3 {
	font-size: 1.3rem;
	color: #333;
	margin: 1rem 0 0.5rem;
}

.member-role {
	color: #2563eb;
	font-weight: 600;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.member-bio {
	color: #666;
	padding: 0 1rem 1rem;
	font-size: 0.95rem;
	line-height: 1.5;
}

.member-social {
	display: flex;
	justify-content: center;
	gap: 1rem;
	padding-bottom: 1.5rem;
}

.member-social a {
	width: 40px;
	height: 40px;
	background: #f8fafc;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	transition: all 0.3s ease;
}

.member-social a:hover {
	background: #2563eb;
	color: white;
	transform: translateY(-3px);
}

/* Testimonials Section */
/* .testimonials {
	background: white;
}

.testimonials-slider {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.testimonial-item {
	display: none;
	text-align: center;
	padding: 2rem;
}

.testimonial-item.active {
	display: block;
}

.testimonial-content {
	background: #f8fafc;
	padding: 3rem;
	border-radius: 20px;
	position: relative;
}

.testimonial-content i {
	font-size: 3rem;
	color: #2563eb;
	opacity: 0.3;
	position: absolute;
	top: 1rem;
	left: 2rem;
}

.testimonial-content p {
	font-size: 1.1rem;
	color: #555;
	line-height: 1.8;
	margin-bottom: 2rem;
	font-style: italic;
}

.testimonial-author {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.testimonial-author img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
}

.testimonial-author h4 {
	color: #333;
	font-size: 1.1rem;
}

.testimonial-author p {
	color: #666;
	font-size: 0.9rem;
	margin: 0;
} */

/* Contact Section */
.contact {
	/* background: #f8fafc; */
	background: white;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.contact-item {
	display: flex;
	gap: 1.5rem;
	align-items: flex-start;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-icon i {
	color: white;
	font-size: 1.2rem;
}

.contact-item h4 {
	color: #333;
	margin-bottom: 0.5rem;
}

.contact-item p {
	color: #666;
	margin: 0.25rem 0;
}

.contact-form {
	background: white;
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e2e8f0;
	border-radius: 10px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #2563eb;
}

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

/* Footer */
.footer {
	background: #1e293b;
	color: white;
	padding: 3rem 0 1rem;
}

.footer-content {
	text-align: center;
	margin-bottom: 2rem;
}

.footer-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.footer-logo i {
	margin-right: 10px;
	color: #fbbf24;
}

.footer-tagline {
	opacity: 0.8;
	margin-bottom: 1.5rem;
}

.footer-social {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.footer-social a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background: #2563eb;
	transform: translateY(-3px);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	opacity: 0.6;
}

.footer-bottom a {
	color: white;
	text-decoration: none;
	margin: 0 0.5rem;
}

.footer-bottom a:hover {
	color: #fbbf24;
}

/* Responsive Design */
@media (max-width: 768px) {
	.nav-menu {
		position: fixed;
		left: -110%;
		top: 70px;
		flex-direction: column;
		background-color: rgba(255, 255, 255, 0.8);
		width: 100%;
		text-align: center;
		transition: 0.3s;
		box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
		padding: 2rem 0;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-link {
		color: #2563eb !important;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-toggle.active .bar:nth-child(2) {
		opacity: 0;
	}

	.nav-toggle.active .bar:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

	.nav-toggle.active .bar:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.hero-container {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
	}

	.accessibility-modes {
		justify-content: center;
		gap: 0.5rem;
		width: 100%;
		max-width: 100%;
	}

	.mode-item {
		padding: 0.5rem 0.8rem;
		font-size: 0.8rem;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-buttons {
		justify-content: center;
	}

	.about-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.about-stats {
		justify-content: space-around;
	}

	.feature-cards {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.5rem;
	}

	.feature-card {
		padding: 1rem 0.5rem;
	}

	.feature-card i {
		font-size: 1.5rem;
	}

	.feature-card h4 {
		font-size: 0.8rem;
	}

	.feature-card p {
		display: none;
		/* Hide detailed text on mobile to fit in one row */
	}

	.features-grid {
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem;
	}

	.features-grid .feature-item {
		padding: 1.5rem 0.75rem;
	}

	.features-grid .feature-item h3 {
		font-size: 1rem;
		margin-bottom: 0.5rem;
	}

	.features-grid .feature-item p {
		font-size: 0.8rem;
		line-height: 1.4;
	}

	.features-grid .feature-item .feature-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 1rem;
	}

	.features-grid .feature-item .feature-icon i {
		font-size: 1.2rem;
	}

	.features-grid .feature-item:nth-child(9) {
		grid-column: 1 / span 2;
		justify-self: center;
		width: calc(50% - 0.375rem);
	}

	.sdg-goals {
		flex-wrap: nowrap;
		gap: 0.5rem;
	}

	.sdg-goal {
		min-width: 0;
		flex: 1;
	}

	.sdg-icon {
		width: 60px;
		height: 60px;
		font-size: 1.5rem;
	}

	.sdg-number {
		width: 20px;
		height: 20px;
		font-size: 0.7rem;
	}

	.sdg-goal h3 {
		font-size: 0.9rem;
	}

	.sdg-goal p {
		font-size: 0.75rem;
	}

	.rights-grid {
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem;
	}

	.rights-item {
		padding: 1.5rem 0.75rem;
	}

	.rights-item h3 {
		font-size: 1rem;
		margin-bottom: 0.5rem;
	}

	.rights-item p {
		font-size: 0.8rem;
		line-height: 1.4;
		margin-bottom: 1rem;
	}

	.rights-icon {
		width: 50px;
		height: 50px;
		margin-bottom: 1rem;
	}

	.rights-icon i {
		font-size: 1.2rem;
	}

	.rights-tag {
		padding: 0.3rem 0.6rem;
		font-size: 0.7rem;
	}

	.mission-content {
		grid-template-columns: 1fr;
	}

	.team-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.team-member h3 {
		font-size: 1rem;
		margin: 0.75rem 0.5rem 0.25rem;
	}

	.member-role {
		font-size: 0.8rem;
		margin-bottom: 1rem;
	}

	.member-image {
		height: 180px;
	}

	.member-social {
		gap: 0.5rem;
		padding-bottom: 1rem;
	}

	.member-social a {
		width: 32px;
		height: 32px;
	}

	.team-member:last-child:nth-child(odd) {
		grid-column: 1 / span 2;
		justify-self: center;
		width: calc(100% / 2 - 1.5rem);
	}

	.contact-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.phone-mockup {
		width: 250px;
		height: 500px;
	}

	.report-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.report-methods {
		gap: 1.5rem;
	}

	.tracking-id {
		font-size: 0.9rem;
		padding: 0.5rem 1rem;
		word-break: break-all;
	}

	.process-card,
	.confirmation-card {
		padding: 1.5rem;
	}

	.report-method {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 15px;
	}

	.hero-title {
		font-size: 2rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.testimonial-content {
		padding: 2rem 1.5rem;
	}

	.contact-form {
		padding: 2rem 1.5rem;
	}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* Focus styles for better accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
	outline: 2px solid #2563eb;
	outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
	.btn {
		border: 2px solid currentColor;
	}

	.feature-item,
	.team-member,
	.contact-form {
		border: 1px solid #333;
	}
}