/* ========================================
assets/css/frontend/style.css
FRONTEND - MAIN SITE STYLES ONLY
No Bootstrap overrides, no admin styles
======================================== */

:root {
	--primary: #0d6efd;
	--primary-dark: #0b5ed7;
	--secondary: #6c757d;
	--success: #198754;
	--danger: #dc3545;
	--warning: #ffc107;
	--info: #0dcaf0;
	--dark: #212529;
	--light: #f8f9fa;
	--white: #ffffff;
	--gray: #6c757d;
	--light-gray: #e9ecef;

	--font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--container-width: 1280px;
	--header-height: 80px;
	--border-radius: 8px;
	--box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	--transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-family);
	font-size: 16px;
	line-height: 1.6;
	color: var(--dark);
	background-color: var(--white);
	overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1rem;
	color: var(--dark);
}

h1 {
	font-size: 2.5rem;
}
h2 {
	font-size: 2rem;
}
h3 {
	font-size: 1.75rem;
}
h4 {
	font-size: 1.5rem;
}
h5 {
	font-size: 1.25rem;
}
h6 {
	font-size: 1rem;
}

p {
	margin-bottom: 1rem;
	color: var(--gray);
}

a {
	color: var(--primary);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--primary-dark);
}

/* ===== LAYOUT ===== */
.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 20px;
}

.container-fluid {
	width: 100%;
	padding: 0 20px;
	margin: 0 auto;
}

/* ===== HEADER ===== */
.site-header {
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
	height: var(--header-height);
	display: flex;
	align-items: center;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.logo {
	display: flex;
	align-items: center;
}

.logo img {
	height: 50px;
	width: auto;
}

.logo-text {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--dark);
	margin-left: 10px;
}

.logo-text span {
	color: var(--primary);
}

/* ===== NAVIGATION ===== */
.main-nav {
	display: flex;
	align-items: center;
}

.nav-menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 1.5rem;
}

.nav-item {
	position: relative;
}

.nav-link {
	color: var(--dark);
	font-weight: 500;
	padding: 0.5rem 0;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary);
}

.nav-link.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--primary);
	border-radius: 2px;
}

/* ===== DROPDOWN ===== */
.dropdown {
	position: relative;
}

.dropdown-toggle {
	display: flex;
	align-items: center;
	gap: 5px;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: var(--white);
	border-radius: 12px;
	box-shadow: var(--box-shadow);
	padding: 0.75rem 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--transition);
	z-index: 1000;
	border: 1px solid var(--light-gray);
}

.dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-item {
	display: block;
	padding: 0.6rem 1.5rem;
	color: var(--dark);
	font-size: 0.95rem;
	transition: var(--transition);
}

.dropdown-item:hover {
	background: rgba(13, 110, 253, 0.05);
	color: var(--primary);
	padding-left: 2rem;
}

.dropdown-item i {
	width: 20px;
	margin-right: 10px;
	color: var(--primary);
}

.dropdown-divider {
	height: 1px;
	background: var(--light-gray);
	margin: 0.5rem 0;
}

/* ===== HERO SECTION ===== */
.hero-section {
	background: linear-gradient(135deg, var(--primary) 0%, #0056b3 100%);
	color: var(--white);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.hero-content {
	max-width: 600px;
}

.hero-title {
	font-size: 3rem;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.25rem;
	color: rgba(255,255,255,0.9);
	margin-bottom: 2rem;
}

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

/* ===== BUTTONS ===== */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	border-radius: 50px;
	border: 2px solid transparent;
	transition: var(--transition);
	cursor: pointer;
	font-size: 1rem;
	line-height: 1;
	gap: 0.5rem;
}

.btn-primary {
	background: var(--primary);
	color: var(--white);
}

.btn-primary:hover {
	background: var(--primary-dark);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(13,110,253,0.3);
}

.btn-outline-light {
	background: transparent;
	border-color: var(--white);
	color: var(--white);
}

.btn-outline-light:hover {
	background: var(--white);
	color: var(--primary);
}

.btn-lg {
	padding: 1rem 2rem;
	font-size: 1.125rem;
}

.btn-sm {
	padding: 0.5rem 1rem;
	font-size: 0.875rem;
}

/* ===== CARDS ===== */
.card {
	background: var(--white);
	border-radius: 16px;
	padding: 1.5rem;
	box-shadow: 0 5px 20px rgba(0,0,0,0.03);
	transition: var(--transition);
	height: 100%;
	border: 1px solid var(--light-gray);
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.card-text {
	color: var(--gray);
	margin-bottom: 1.5rem;
}

/* ===== COMPANY CARDS ===== */
.company-card {
	background: var(--white);
	border-radius: 24px;
	padding: 2rem;
	text-align: center;
	box-shadow: var(--box-shadow);
	transition: var(--transition);
	border: 1px solid var(--light-gray);
}

.company-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.company-icon {
	width: 80px;
	height: 80px;
	background: rgba(13,110,253,0.1);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.company-icon i {
	font-size: 2.5rem;
	color: var(--primary);
}

.company-name {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.company-desc {
	color: var(--gray);
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

/* ===== PACKAGE CARDS ===== */
.package-card {
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--box-shadow);
	transition: var(--transition);
}

.package-header {
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: var(--white);
	padding: 2rem 1.5rem;
	text-align: center;
}

.package-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 0.5rem;
}

.package-price {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--white);
}

.package-price small {
	font-size: 1rem;
	font-weight: 400;
	opacity: 0.9;
}

.package-body {
	padding: 1.5rem;
}

.package-features {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
}

.package-features li {
	padding: 0.5rem 0;
	color: var(--gray);
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.package-features i {
	color: var(--success);
}

/* ===== SLIDER ===== */
.slider-section {
	position: relative;
	overflow: hidden;
}

.slider-item {
	position: relative;
	height: 600px;
}

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

.slider-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.slider-caption {
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translateY(-50%);
	max-width: 600px;
	color: var(--white);
	z-index: 2;
}

.slider-caption h2 {
	font-size: 3rem;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 1rem;
	text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.slider-caption p {
	font-size: 1.25rem;
	color: rgba(255,255,255,0.9);
	margin-bottom: 2rem;
	text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* ===== SECTIONS ===== */
.section {
	padding: 80px 0;
}

.section-sm {
	padding: 40px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 3rem;
}

.section-title h2 {
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
}

.section-title h2::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: var(--primary);
	margin: 1rem auto 0;
	border-radius: 2px;
}

.section-subtitle {
	color: var(--gray);
	font-size: 1.125rem;
	max-width: 600px;
	margin: 0 auto;
}

/* ===== GRID ===== */
.grid {
	display: grid;
	gap: 2rem;
}

.grid-2 {
	grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
	grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
	grid-template-columns: repeat(4, 1fr);
}
.grid-5 {
	grid-template-columns: repeat(5, 1fr);
}
.grid-6 {
	grid-template-columns: repeat(6, 1fr);
}

/* ===== FOOTER ===== */
.site-footer {
	background: var(--dark);
	color: var(--white);
	padding: 60px 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-bottom: 3rem;
}

.footer-col h4 {
	color: var(--white);
	font-size: 1.125rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-col li {
	margin-bottom: 0.75rem;
}

.footer-col a {
	color: rgba(255,255,255,0.7);
	transition: var(--transition);
}

.footer-col a:hover {
	color: var(--white);
	padding-left: 5px;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding: 1.5rem 0;
	text-align: center;
	color: rgba(255,255,255,0.5);
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
	color: var(--primary) !important;
}
.text-white {
	color: var(--white) !important;
}
.text-dark {
	color: var(--dark) !important;
}
.text-gray {
	color: var(--gray) !important;
}

.bg-primary {
	background: var(--primary) !important;
}
.bg-light {
	background: var(--light) !important;
}
.bg-white {
	background: var(--white) !important;
}
.bg-dark {
	background: var(--dark) !important;
}

.m-0 {
	margin: 0 !important;
}
.mt-1 {
	margin-top: 0.5rem !important;
}
.mt-2 {
	margin-top: 1rem !important;
}
.mt-3 {
	margin-top: 1.5rem !important;
}
.mt-4 {
	margin-top: 2rem !important;
}
.mt-5 {
	margin-top: 3rem !important;
}

.mb-1 {
	margin-bottom: 0.5rem !important;
}
.mb-2 {
	margin-bottom: 1rem !important;
}
.mb-3 {
	margin-bottom: 1.5rem !important;
}
.mb-4 {
	margin-bottom: 2rem !important;
}
.mb-5 {
	margin-bottom: 3rem !important;
}

.p-1 {
	padding: 0.5rem !important;
}
.p-2 {
	padding: 1rem !important;
}
.p-3 {
	padding: 1.5rem !important;
}
.p-4 {
	padding: 2rem !important;
}
.p-5 {
	padding: 3rem !important;
}

.d-flex {
	display: flex !important;
}
.d-grid {
	display: grid !important;
}
.d-block {
	display: block !important;
}
.d-none {
	display: none !important;
}

.flex-wrap {
	flex-wrap: wrap !important;
}
.flex-nowrap {
	flex-wrap: nowrap !important;
}
.flex-column {
	flex-direction: column !important;
}
.flex-row {
	flex-direction: row !important;
}

.justify-start {
	justify-content: flex-start !important;
}
.justify-end {
	justify-content: flex-end !important;
}
.justify-center {
	justify-content: center !important;
}
.justify-between {
	justify-content: space-between !important;
}
.justify-around {
	justify-content: space-around !important;
}

.align-start {
	align-items: flex-start !important;
}
.align-end {
	align-items: flex-end !important;
}
.align-center {
	align-items: center !important;
}
.align-stretch {
	align-items: stretch !important;
}

.gap-1 {
	gap: 0.5rem !important;
}
.gap-2 {
	gap: 1rem !important;
}
.gap-3 {
	gap: 1.5rem !important;
}
.gap-4 {
	gap: 2rem !important;
}

.w-100 {
	width: 100% !important;
}
.h-100 {
	height: 100% !important;
}

.rounded {
	border-radius: 8px !important;
}
.rounded-lg {
	border-radius: 16px !important;
}
.rounded-circle {
	border-radius: 50% !important;
}

.shadow {
	box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}
.shadow-lg {
	box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
}
.shadow-none {
	box-shadow: none !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
	from {
		opacity: 0;
	transform: translateY(20px);
	}
	to {
		opacity: 1;
	transform: translateY(0);
	}
}

.animate-fade-in {
	animation: fadeIn 0.6s ease forwards;
}

@keyframes slideInLeft {
	from {
		opacity: 0;
	transform: translateX(-30px);
	}
	to {
		opacity: 1;
	transform: translateX(0);
	}
}

.animate-slide-left {
	animation: slideInLeft 0.6s ease forwards;
}