@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
	--primary-color: #ffffff;
	--secondary-color: #95b08e;
	--accent-color: #95b08e;
	--dark-bg: #0a0a0a;
	--card-bg: #161616;
	--text-color: #cbd5e1;
	--heading-color: #ffffff;
	--nav-glass: rgba(10, 10, 10, 0.85);
	--transition: all 0.3s ease;
	--glass-border: rgba(255, 255, 255, 0.1);
}

.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.text-accent { color: var(--accent-color) !important; }

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Outfit", sans-serif;
	background-color: var(--dark-bg);
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
	width: 10px;
}

::-webkit-scrollbar-track {
	background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
	background: var(--secondary-color);
	border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
	background: var(--primary-color);
}

/* Navbar */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0.5rem 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	transition: var(--transition);
	backdrop-filter: blur(10px);
}

.navbar.scrolled {
	background: var(--nav-glass);
	padding: 1rem 5%;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	border-bottom: 1px solid var(--glass-border);
}

.logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--heading-color);
	text-decoration: none;
}

.nav-links {
	display: flex;
	gap: 2rem;
	list-style: none;
	margin-bottom: 0;
}

.nav-links a {
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

.nav-links a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -5px;
	left: 0;
	background: var(--primary-color);
	transition: var(--transition);
}

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

.nav-links a:hover {
	color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--heading-color);
    z-index: 1010; /* Higher than nav-links */
    transition: var(--transition);
    position: relative;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
        position: fixed;
        top: 25px;
        right: 5%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--nav-glass);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid var(--glass-border);
        z-index: 1005;
    }

    .nav-links.active {
        right: 0 !important;
        display: flex !important;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-links a.active::after {
        width: 100%;
    }
}

.btn-primary, .btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0.9rem 2rem;
	border-radius: 30px;
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	text-decoration: none;
	letter-spacing: 0.5px;
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent-color), #7a9373);
	color: #fff;
	border: none;
	box-shadow: 0 4px 15px rgba(149, 176, 142, 0.3);
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(149, 176, 142, 0.5);
	color: #fff;
}

.btn-outline {
	background: transparent;
	color: var(--heading-color);
	border: 2px solid var(--accent-color);
}

.btn-outline:hover {
	background: var(--accent-color);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(149, 176, 142, 0.3);
}

/* Hero Section */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 5%;
	overflow: hidden;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	display: flex;
	align-items: end;
	justify-content: center;
	padding-bottom: 5%;
}

.hero-slide.active {
	opacity: 1;
	z-index: 1;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background-size: cover;
	background-position: center;
	z-index: -1;
}

.hero-background::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

.hero::before {
	content: "";
	position: absolute;
	top: 20%;
	left: 10%;
	width: 300px;
	height: 300px;
	background: var(--primary-color);
	filter: blur(150px);
	opacity: 0.3;
	z-index: 0;
	animation: float 6s ease-in-out infinite;
}

.hero::after {
	content: "";
	position: absolute;
	bottom: 20%;
	right: 10%;
	width: 400px;
	height: 400px;
	background: var(--accent-color);
	filter: blur(180px);
	opacity: 0.2;
	z-index: 0;
	animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
	text-align: center;
	max-width: 800px;
	z-index: 2;
	position: relative;
}

.hero h1 {
	font-size: 4.5rem;
	line-height: 1.1;
	font-weight: 800;
	margin-bottom: 0.5rem;
	color: var(--heading-color);
}

.hero h2.hero-subtitle {
	font-size: 2rem;
	line-height: 1.2;
	font-weight: 600;
	margin-bottom: 0rem;
	color: var(--heading-color);
}

.hero p {
	font-size: 1.25rem;
	color: var(--text-color);
	margin-bottom: 1.5rem;
}

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

.slider-controls {
	position: absolute;
	bottom: 3rem;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 2rem;
	z-index: 10;
}

.slider-btn {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
}

.slider-btn:hover {
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.slider-dots {
	display: flex;
	gap: 0.8rem;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: var(--transition);
}

.dot.active {
	background: var(--primary-color);
	width: 30px;
	border-radius: 6px;
}

.dot:hover {
	background: rgba(255, 255, 255, 0.6);
}

/* Sections Common */
section {
	padding: 5rem 5%;
}

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

.section-header h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
	color: var(--heading-color);
}

.section-header span {
	color: var(--primary-color);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.9rem;
	font-weight: 600;
}

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

.feature-card {
	background: var(--card-bg);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 2.5rem;
	transition: var(--transition);
	position: relative;
	overflow: hidden;
}

.feature-card:hover {
	transform: translateY(-10px);
	background: #1e1e1e;
	border-color: var(--accent-color);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: var(--accent-color);
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	color: var(--accent-color);
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 1rem;
	color: var(--heading-color);
}

.feature-card p {
	color: var(--text-color);
}

.price-tag {
	color: var(--accent-color);
	font-size: 1.25rem;
}

.duration-tag {
	color: var(--text-color);
	opacity: 0.8;
}

/* Gallery Section */

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

.gallery-item {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	height: 300px;
	cursor: pointer;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2rem;
	opacity: 0;
	transition: var(--transition);
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-overlay h3 {
	font-size: 1.5rem;
	color: #fff;
	margin-bottom: 0.5rem;
	transform: translateY(20px);
	transition: var(--transition);
}

.gallery-overlay p {
	color: #cbd5e1;
	font-size: 0.9rem;
	transform: translateY(20px);
	transition: var(--transition);
	transition-delay: 0.1s;
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
	transform: translateY(0);
}

/* Pricing Section */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.pricing-card {
	background: var(--card-bg);
	border: 1px solid var(--glass-border);
	border-radius: 20px;
	padding: 3rem 2rem;
	text-align: center;
	transition: var(--transition);
	position: relative;
	display: flex;
	flex-direction: column;
}

.pricing-card.featured {
	border-color: var(--accent-color);
	background: rgba(149, 176, 142, 0.03);
	transform: scale(1.05);
	z-index: 2;
}

.badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--primary-color);
	color: #000;
	padding: 0.3rem 0.8rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.pricing-card h3 {
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	color: var(--heading-color);
}

.price {
	font-size: 3rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.price .original-price {
	font-size: 1.2rem;
	text-decoration: line-through;
	color: #64748b;
	font-weight: 400;
}

.price .duration {
	font-size: 1rem;
	color: #94a3b8;
	font-weight: 400;
	align-self: flex-end;
	margin-bottom: 10px;
}

.description {
	color: var(--text-color);
	margin-bottom: 2rem;
}

.features-list {
	list-style: none;
	margin-bottom: 2.5rem;
	text-align: left;
	flex-grow: 1;
}

.features-list li {
	margin-bottom: 1rem;
	color: var(--text-color);
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.features-list li.disabled {
	color: #64748b;
	text-decoration: line-through;
	opacity: 0.6;
}

.features-list li i {
	color: var(--primary-color);
}

.features-list li.disabled i {
	color: #64748b;
}

.btn-block {
	width: 100%;
	display: block;
	margin: 0;
}

/* About Section */
.about-section {
	background: var(--dark-bg);
}

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

.about-text h3 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: var(--heading-color);
	line-height: 1.3;
}

.about-text p {
	color: var(--text-color);
	margin-bottom: 1.5rem;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
}

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

.stat-number {
	display: block;
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--accent-color);
}

.stat-label {
	font-size: 0.9rem;
	color: var(--text-color);
}

.image-placeholder {
	width: 100%;
	height: 400px;
	background: rgba(149, 176, 142, 0.05);
	border-radius: 20px;
	border: 1px solid var(--glass-border);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent-color);
	font-size: 5rem;
}

/* Contact Section */
.contact-container {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 3rem;
}

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

.contact-card {
	background: var(--card-bg);
	padding: 1.5rem;
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.05);
	transition: var(--transition);
}

.contact-card:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateX(5px);
}

.contact-card i {
	font-size: 1.5rem;
	color: var(--accent-color);
	margin-bottom: 1rem;
}

.contact-card h4 {
	color: var(--heading-color);
	font-size: 1.1rem;
	margin-bottom: 0.5rem;
}

.contact-card p {
	color: var(--text-color);
	font-size: 0.95rem;
}

.contact-form-wrapper {
	background: var(--card-bg);
	padding: 2.5rem;
	border-radius: 20px;
	border: 1px solid var(--glass-border);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem 1rem 1rem 2.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--glass-border);
	border-radius: 10px;
	color: #fff;
	font-family: inherit;
	font-size: 1rem;
	transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
	outline: none;
	color: var(--accent-color);
	border-color: var(--accent-color);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 4px rgba(149, 176, 142, 0.1);
}

.input-group .input-group-text {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--glass-border);
	border-radius: 10px;
	color: #fff;
}

/* Autofill Fix */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	-webkit-box-shadow: 0 0 0 30px #111111 inset !important;
	-webkit-text-fill-color: white !important;
	transition: background-color 5000s ease-in-out 0s;
}

/* Social Links Redesign */
.social-links {
	margin-top: 1.5rem;
}

.social-link {
	width: 45px;
	height: 45px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	color: var(--text-color);
	font-size: 1.2rem;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	backdrop-filter: blur(5px);
}

.social-link:hover {
	background: var(--accent-color);
	color: #000;
	transform: translateY(-5px) rotate(8deg);
	border-color: var(--accent-color);
	box-shadow: 0 10px 20px rgba(149, 176, 142, 0.3);
}

.social-link i {
	transition: transform 0.3s ease;
}

.social-link:hover i {
	transform: scale(1.1);
}

/* Instagram Section */
.instagram-section {
    padding: 100px 0;
    background: #050505;
}

.instagram-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    user-select: none;
}

.instagram-scroll-container {
    display: flex;
    width: max-content;
}

.instagram-marquee-content {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    padding-right: 20px;
    animation: instagram-scroll 40s linear infinite;
}

.instagram-item {
    position: relative;
    flex: 0 0 350px;
    height: 350px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.instagram-overlay {
    position: absolute;
    inset: 0;
    background: rgba(149, 176, 142, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.instagram-overlay i {
    color: white;
    font-size: 2rem;
    transform: scale(0.5);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

.instagram-item:hover .instagram-overlay i {
    transform: scale(1);
}

.instagram-scroll-container:hover .instagram-marquee-content {
    animation-play-state: paused;
}

@keyframes instagram-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@media (max-width: 768px) {
    .instagram-item {
        flex: 0 0 250px;
        height: 250px;
    }
}

/* Animations */
@keyframes float {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-20px);
	}
}

.fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Typing Cursor */
.typing-text::after {
	content: "|";
	animation: blink 1s infinite;
}

@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

/* Responsive */
@media (max-width: 900px) {
	.pricing-card.featured {
		transform: scale(1);
	}
	.about-content {
		grid-template-columns: 1fr;
		text-align: center;
	}
	.stats-grid {
		justify-content: center;
	}
	.contact-container {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 3rem;
	}

	.nav-links {
		display: none;
	}

	.cta-group {
		flex-direction: column;
		padding: 0 2rem;
		gap: 1.5rem;
	}

	.btn-outline {
		margin-left: 0;
	}
}

/* Gallery Filter */
.gallery-filter {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 3rem;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 0.6rem 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: transparent;
	color: var(--text-color);
	border-radius: 30px;
	cursor: pointer;
	transition: var(--transition);
	font-size: 0.95rem;
	font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
	background: var(--primary-color);
	color: var(--dark-bg);
	border-color: var(--primary-color);
}

.category-tag {
	display: inline-block;
	background: var(--primary-color);
	color: var(--dark-bg);
	padding: 0.2rem 0.6rem;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	text-transform: uppercase;
	transform: translateY(20px);
	opacity: 0;
	transition: var(--transition);
}

.gallery-item:hover .gallery-overlay .category-tag {
	transform: translateY(0);
	opacity: 1;
}

/* Filter Animations */
.gallery-item.hide {
	display: none;
	animation: fadeOut 0.5s ease forwards;
}

.gallery-item.show {
	display: block;
	animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
		transform: scale(1);
	}
	to {
		opacity: 0;
		transform: scale(0.9);
	}
}

/* Album Heroes - Clean Style */
.album-hero {
	padding: 6rem 0 3rem;
	background-color: var(--dark-bg);
	text-align: center;
	margin-bottom: 2rem;
}

.album-hero-content h1 {
	font-size: 3.5rem;
	color: var(--heading-color);
	margin-bottom: 1rem;
}

.back-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-color);
	text-decoration: none;
	font-weight: 500;
	margin-bottom: 2rem;
	transition: var(--transition);
	padding: 0.5rem 1.2rem;
	background: var(--card-bg);
	border: 1px solid var(--glass-border);
	border-radius: 50px;
	font-size: 0.9rem;
}

@media (max-width: 992px) {
	.masonry-grid {
		column-count: 2;
	}
}

@media (max-width: 576px) {
	.masonry-grid {
		column-count: 1;
	}
}

.masonry-item {
	break-inside: avoid;
	margin-bottom: 1.5rem;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: var(--card-bg);
	border: 1px solid var(--glass-border);
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
	transition: var(--transition);
}

.masonry-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.masonry-item img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
}

.masonry-item:hover img {
	transform: scale(1.03);
}

.masonry-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
	opacity: 0;
	transition: var(--transition);
	display: flex;
	align-items: flex-end;
	padding: 1.5rem;
}

.masonry-item:hover .masonry-overlay {
	opacity: 1;
}

.zoom-btn {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 36px;
	height: 36px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: black;
	opacity: 0;
	transform: scale(0.8);
	transition: var(--transition);
}

.masonry-item:hover .zoom-btn {
	opacity: 1;
	transform: scale(1);
}
/* Album UI Enhancements */

/* Album Index Hero */
.index-hero {
	padding: 8rem 0 6rem;
	background: var(--dark-bg);
	text-align: center;
	position: relative;
	overflow: hidden;
	margin-bottom: 4rem;
	border-bottom: 1px solid var(--glass-border);
}

.index-hero::before {
	content: "";
	position: absolute;
	top: -50%;
	left: -20%;
	width: 80%;
	height: 200%;
	background: radial-gradient(
		circle,
		rgba(136, 160, 136, 0.1) 0%,
		transparent 70%
	);
	z-index: -1;
	animation: rotate 20s linear infinite;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Album Card Modern */
.album-card {
	background: var(--card-bg);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--glass-border);
}

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

.album-img-wrapper {
	position: relative;
	padding-top: 75%; /* 4:3 Aspect Ratio */
	overflow: hidden;
	background-color: #f1f5f9;
}

.album-img-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.album-card:hover .album-img-wrapper img {
	transform: scale(1.1);
}

.album-overlay-hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: all 0.3s ease;
	backdrop-filter: blur(2px);
}

.album-card:hover .album-overlay-hover {
	opacity: 1;
}

.view-album-btn {
	padding: 0.8rem 1.5rem;
	background: var(--accent-color);
	color: black;
	border-radius: 30px;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 1px;
	transform: translateY(20px);
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.album-card:hover .view-album-btn {
	transform: translateY(0);
}

.album-content {
	padding: 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.album-meta-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	font-size: 0.85rem;
	color: #94a3b8;
}

.meta-pill {
	background: rgba(255, 255, 255, 0.05);
	padding: 0.3rem 0.8rem;
	border-radius: 20px;
	color: var(--text-color);
	font-weight: 500;
}

.album-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--heading-color);
	margin-bottom: 0.5rem;
	line-height: 1.4;
	text-decoration: none;
	display: block;
	transition: color 0.3s ease;
}

.album-title:hover {
	color: var(--primary-color);
}

.album-desc {
	color: var(--text-color);
	font-size: 0.95rem;
	margin-bottom: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Album Details Hero with Glassmorphism */
.album-details-hero {
	position: relative;
	padding: 10rem 0 6rem;
	color: #ffffff;
	overflow: hidden;
	margin-bottom: 2rem;
}

.hero-bg-blur {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	filter: blur(20px) brightness(0.6);
	transform: scale(1.1);
	z-index: -1;
}

.hero-bg-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.3),
		rgba(0, 0, 0, 0.7)
	);
	z-index: -1;
}

.album-details-content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.album-tag {
	display: inline-block;
	padding: 0.5rem 1.2rem;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	color: #ffffff;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.album-title-large {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	line-height: 1.1;
}

.album-info-bar {
	display: inline-flex;
	gap: 2rem;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	padding: 1rem 2rem;
	border-radius: 100px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	margin-bottom: 2rem;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #f1f5f9;
	font-weight: 500;
}

.info-item i {
	color: var(--primary-color);
}

.floating-back-btn {
	position: fixed;
	top: 100px;
	left: 40px;
	background: var(--card-bg);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	color: var(--heading-color);
	border: 1px solid var(--glass-border);
	font-size: 1.2rem;
	z-index: 900;
	transition: all 0.3s ease;
	text-decoration: none;
	opacity: 0.8;
}

.floating-back-btn:hover {
	transform: translateX(-5px);
	background: var(--primary-color);
	color: #ffffff;
	opacity: 1;
}

/* Albums Grid (Landing Page) */
.albums-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

/* Modern Bento Gallery Grid */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 300px;
	gap: 1.5rem;
	padding-bottom: 2rem;
}

.gallery-item-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
	background: var(--card-bg);
	border: 1px solid var(--glass-border);
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.size-square {
	grid-column: span 1;
	grid-row: span 1;
}

.size-wide {
	grid-column: span 2;
	grid-row: span 1;
}

.size-tall {
	grid-column: span 1;
	grid-row: span 2;
}

.size-big {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery-card {
	width: 100%;
	height: 100%;
	position: relative;
}

.gallery-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}

.gallery-item-wrapper:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.gallery-item-wrapper:hover img {
	transform: scale(1.1);
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.7) 0%,
		transparent 100%
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-item-title {
	color: white;
	font-size: 1.1rem;
	font-weight: 600;
	transform: translateY(10px);
	opacity: 0;
	transition: all 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-item-title {
	transform: translateY(0);
	opacity: 1;
}

.gallery-zoom-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0.8);
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.2rem;
	opacity: 0;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.gallery-item:hover .gallery-zoom-btn {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
        gap: 1rem;
    }
    
    .size-wide, .size-big {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .size-wide, .size-big, .size-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-color: #25d366;
	color: #fff;
	padding: 16px 18px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	text-decoration: none;
	font-weight: 600;
	box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
	z-index: 9999;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	animation: float 2s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
	100% {
		transform: translateY(0);
	}
}

.whatsapp-float i {
	font-size: 1.5rem;
}

.whatsapp-float:hover {
	transform: translateY(-5px) scale(1.05);
	background-color: #20ba5a;
	color: #fff;
	box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
	gap: 10px;
}

.whatsapp-float span {
	max-width: 0;
	overflow: hidden;
	white-space: nowrap;
	transition: max-width 0.5s ease;
}

.whatsapp-float:hover span {
	max-width: 200px;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
	.whatsapp-float {
		bottom: 20px;
		right: 20px;
		padding: 12px;
	}

	.whatsapp-float span {
		display: none;
	}
}

.success-section {
	padding: 10rem 5% 5rem;
	max-width: 800px;
	margin: 0 auto;
}

.success-card {
	text-align: center;
	padding: 4rem;
}

.success-icon-wrapper {
	position: relative;
	width: 100px;
	height: 100px;
	margin: 0 auto 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-circle {
	width: 70px;
	height: 70px;
	background: var(--accent-color);
	color: #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	z-index: 2;
	box-shadow: 0 0 30px rgba(149, 176, 142, 0.3);
}

.pulse-ring {
	position: absolute;
	width: 100px;
	height: 100px;
	border: 2px solid var(--accent-color);
	border-radius: 50%;
	animation: success-pulse 2s infinite;
	opacity: 0.5;
}

@keyframes success-pulse {
	0% {
		transform: scale(0.7);
		opacity: 0.5;
	}
	100% {
		transform: scale(1.1);
		opacity: 0;
	}
}

.success-title {
	color: var(--heading-color);
	font-size: 2.2rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

.success-msg {
	color: var(--text-color);
	opacity: 0.7;
	line-height: 1.6;
	margin-bottom: 3rem;
}

.text-accent {
	color: var(--accent-color) !important;
}

.booking-receipt {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 3rem;
	text-align: left;
}

.receipt-header {
	background: rgba(255, 255, 255, 0.02);
	padding: 1.2rem 2rem;
	border-bottom: 1px solid var(--glass-border);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.ref-label {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-color);
	opacity: 0.5;
}

.ref-value {
	font-weight: 700;
	color: var(--accent-color);
}

.receipt-body {
	padding: 2rem;
}

.receipt-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	margin-bottom: 2rem;
}

.receipt-row:last-child {
	margin-bottom: 0;
}

.r-label {
	display: block;
	font-size: 0.8rem;
	color: var(--text-color);
	opacity: 0.5;
	margin-bottom: 0.5rem;
}

.r-val {
	color: var(--heading-color);
	font-weight: 600;
	font-size: 1rem;
}

.receipt-body .small {
	font-size: 0.85rem;
}
.text-break {
	word-break: break-all;
}

/* .success-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

.success-actions .btn-primary,
.success-actions .btn-outline {
	padding: 1rem 2.5rem;
	min-width: 180px;
	margin: 0;
}
 */
@media (max-width: 600px) {
	.receipt-row {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.success-actions {
		flex-direction: column;
	}
}

.checkout-section {
	padding: 8rem 5% 5rem;
	max-width: 800px;
	margin: 0 auto;
}

.checkout-card {
	padding: 3.5rem;
}

.card-title {
	color: var(--heading-color);
	text-align: center;
	margin-bottom: 2.5rem;
	font-size: 1.8rem;
}

.summary-details {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
	padding: 2rem;
	margin-bottom: 2.5rem;
}

.summary-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1.2rem;
}

.summary-item .label {
	color: var(--text-color);
	opacity: 0.6;
}

.summary-item .value {
	color: var(--heading-color);
	font-weight: 600;
}

.total-row {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.total-label {
	font-size: 1.2rem;
	color: var(--heading-color);
}

.total-value {
	font-size: 2rem;
	color: var(--accent-color);
	font-weight: 700;
}

.payment-methods {
	margin-bottom: 2.5rem;
}

.method-title {
	color: var(--heading-color);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1.5rem;
	opacity: 0.7;
}

.payment-option {
	display: block;
	position: relative;
	cursor: pointer;
	margin-bottom: 1rem;
}

.payment-option input {
	position: absolute;
	opacity: 0;
}

.option-content {
	display: flex;
	align-items: center;
	padding: 1.5rem;
	background: rgba(255, 255, 255, 0.02);
	border: 1px solid var(--glass-border);
	border-radius: 12px;
	transition: var(--transition);
}

.payment-option input:checked + .option-content {
	border-color: var(--accent-color);
	background: rgba(149, 176, 142, 0.05);
}

.option-content i {
	font-size: 2rem;
	color: var(--text-color);
	margin-right: 1.5rem;
	width: 40px;
	text-align: center;
}

.payment-option input:checked + .option-content i {
	color: var(--accent-color);
}

.option-info {
	display: flex;
	flex-direction: column;
}

.option-name {
	color: var(--heading-color);
	font-weight: 600;
	margin-bottom: 0.2rem;
}

.option-desc {
	color: var(--text-color);
	font-size: 0.8rem;
	opacity: 0.5;
}

.secure-badge {
	margin-top: 2rem;
	text-align: center;
	color: var(--text-color);
	opacity: 0.4;
	font-size: 0.85rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.w-100 {
	width: 100%;
}
.me-2 {
	margin-right: 0.5rem;
}

.booking-section {
	padding: 5rem 5%;
	max-width: 1200px;
	margin: 0 auto;
}

.booking-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 3rem;
	align-items: start;
}

.plan-details-card {
	background: var(--card-bg);
	padding: 3rem;
	border-radius: 20px;
	border: 1px solid var(--glass-border);
	position: sticky;
	top: 100px;
}

.plan-icon {
	font-size: 3rem;
	color: var(--accent-color);
	margin-bottom: 2rem;
}

.plan-details-card h3 {
	color: var(--heading-color);
	margin-bottom: 1rem;
	font-size: 1.8rem;
}

.plan-desc {
	color: var(--text-color);
	opacity: 0.8;
	margin-bottom: 2rem;
	line-height: 1.6;
}

.plan-meta {
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.meta-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 0.8rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-item .label {
	color: var(--text-color);
	opacity: 0.6;
	font-size: 0.9rem;
}

.meta-item .value {
	color: var(--heading-color);
	font-weight: 600;
}

.meta-item .price {
	color: var(--accent-color);
	font-size: 1.5rem;
}

.booking-info-box {
	display: flex;
	gap: 1rem;
	background: rgba(149, 176, 142, 0.05);
	padding: 1.5rem;
	border-radius: 12px;
	color: var(--text-color);
	font-size: 0.9rem;
	line-height: 1.5;
}

.booking-info-box i {
	color: var(--accent-color);
	font-size: 1.2rem;
	margin-top: 0.2rem;
}

/* Form Utilities */
.form-row {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 0.5rem;
}

.flex-1 {
	flex: 1;
}

.native-label {
	display: block;
	color: var(--heading-color);
	font-size: 0.85rem;
	font-weight: 600;
	margin-bottom: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.date-input-wrapper {
	position: relative;
}

.date-input-wrapper input {
	width: 100%;
	padding: 1rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid var(--glass-border);
	border-radius: 10px;
	color: #fff;
	font-family: inherit;
	font-size: 1rem;
	transition: var(--transition);
}

.date-input-wrapper input:focus {
	outline: none;
	border-color: var(--accent-color);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 0 4px rgba(149, 176, 142, 0.1);
}

.date-input-wrapper i {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--accent-color);
	pointer-events: none;
}

.slots-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
	gap: 0.8rem;
	margin-top: 0.5rem;
}

.time-slot {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--glass-border);
	color: var(--text-color);
	padding: 0.8rem;
	border-radius: 8px;
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
	font-weight: 500;
}

.time-slot:hover:not(.disabled) {
	border-color: var(--accent-color);
	background: rgba(149, 176, 142, 0.05);
	transform: translateY(-2px);
}

.time-slot.active {
	background: var(--accent-color);
	color: #000;
	border-color: var(--accent-color);
	font-weight: 700;
}

.time-slot.disabled {
	opacity: 0.2;
	cursor: not-allowed;
	text-decoration: line-through;
}

.error-msg {
	color: #ef4444;
	font-size: 0.85rem;
	margin-top: 0.5rem;
}

.d-none {
	display: none;
}

@media (max-width: 992px) {
	.booking-grid {
		grid-template-columns: 1fr;
	}
	.plan-details-card {
		position: static;
	}
}

@media (max-width: 600px) {
	.form-row {
		flex-direction: column;
		gap: 0;
	}
}

.flatpickr-day.is-booked,
.flatpickr-day.is-booked:hover {
	background: rgba(239, 68, 68, 0.15) !important;
	color: #ef4444 !important;
	cursor: not-allowed !important;
	opacity: 1 !important;
	border: 1px dashed rgba(239, 68, 68, 0.5) !important;
	position: relative;
}

.flatpickr-day.is-booked::after {
	content: "BOOKED";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-15deg);
	font-size: 7px;
	font-weight: 900;
	letter-spacing: 0.5px;
	opacity: 0.4;
	pointer-events: none;
}

/* Style for Past Dates */
.flatpickr-day.flatpickr-disabled:not(.is-booked) {
	background: rgba(255, 213, 213, 0.2) !important;
	color: #816969de !important;
	cursor: not-allowed !important;
	opacity: 0.5;
	border: none !important;
}


/* Dashboard & Home Client Portal Styles */
.home-page {
    --dashboard-card-bg: rgba(255, 255, 255, 0.03);
    --dashboard-border: rgba(255, 255, 255, 0.08);
    --primary-glow: rgba(59, 130, 246, 0.15);
    background: var(--dark-bg);
}

/* Background Blobs */
.dashboard-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #4f46e5;
    top: -100px;
    right: -100px;
    animation: blobFloat 20s infinite alternate;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #9333ea;
    bottom: 50px;
    left: -50px;
    animation: blobFloat 15s infinite alternate-reverse;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: #0ea5e9;
    top: 40%;
    left: 20%;
    animation: blobFloat 25s infinite alternate;
}

@keyframes blobFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

.glass-stat-card {
    background: var(--dashboard-card-bg);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--dashboard-border);
    border-radius: 24px;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.glass-stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
}

.glass-main-card {
    background: var(--dashboard-card-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--dashboard-border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.card-header-custom {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--dashboard-border);
    padding: 1.5rem 2rem;
}

.dashboard-table thead th {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid var(--dashboard-border);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    padding: 1.5rem 1rem;
}

.dashboard-table tbody td {
    background: transparent;
    border-bottom: 1px solid var(--dashboard-border);
    padding: 1.25rem 1rem;
    vertical-align: middle;
    transition: background 0.2s ease;
}

.dashboard-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.015);
}

.dashboard-table tbody tr:last-child td {
    border-bottom: none;
}

.session-type-icon {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.status-pill {
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 0.3px;
}\n
/* Premium Dashboard Buttons & Interactions */
.home-page .btn-primary {
    background: linear-gradient(135deg, #6366f1, #a855f7) !important;
    border: none !important;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.home-page .btn-primary:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4) !important;
    filter: brightness(1.1) !important;
}

.home-page .btn-outline {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--dashboard-border) !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    color: #fff !important;
}

.home-page .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px) !important;
}

.session-type-icon i {
    filter: drop-shadow(0 0 8px currentColor);
}

.stat-value {
    letter-spacing: -1px;
}

.text-secondary {
    color: rgba(255, 255, 255, 0.5) !important;
}

.dashboard-table tbody tr {
    transition: all 0.3s ease;
}

.dashboard-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Animations Trigger */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* New Dashboard Utilities */
.hover-accent:hover {
    border-color: var(--accent-color) !important;
    transform: translateY(-2px);
    transition: var(--transition);
    background: rgba(149, 176, 142, 0.05) !important;
}

.hover-accent:hover i {
    transform: scale(1.1);
    transition: var(--transition);
}

.glass-stat-card .stat-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.05;
    border-radius: 50%;
    pointer-events: none;
}

body.auth-page {
    background: var(--auth-bg);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

body.auth-page::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--accent);
    filter: blur(150px);
    top: -100px;
    right: -100px;
    opacity: 0.2;
    z-index: -1;
}

body.auth-page::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: #c026d3;
    filter: blur(180px);
    bottom: -100px;
    left: -100px;
    opacity: 0.15;
    z-index: -1;
}

.auth-container {
    padding: 2rem 0;
    width: 100%;
    z-index: 10;
}

.auth-card {
    background: var(--card-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo img {
    height: 60px;
    width: auto;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

.form-label {
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    transition: 0.3s;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 0.75rem 1rem 0.75rem 3rem;
    color: #fff;
    width: 100%;
    transition: 0.3s;
}
.form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(149, 176, 142, 0.1);
}

.form-control:focus + i {
    color: var(--accent);
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--card-border);
}

.form-check-input:checked {
    background-color: var(--accent);
    border-color: var(--accent);
}

.form-check-label {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.btn-auth {
    background: var(--accent);
    border: none;
    border-radius: 12px;
    padding: 0.75rem;
    color: #fff;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
    margin-top: 1rem;
}

.btn-auth:hover {
    background: #7a9373;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(149, 176, 142, 0.3);
}

/* Autofill Fix */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #1a1a1a inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

.auth-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.auth-footer a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.invalid-feedback {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

@media (max-width: 640px) {
    .auth-card {
        padding: 1.5rem;
        margin: 1rem;
    }
}

/* Custom Pagination Styles */
.pagination {
    gap: 0.5rem;
}

.pagination .page-item .page-link {
    background: var(--card-bg) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--text-color) !important;
    padding: 0.75rem 1.25rem;
    border-radius: 12px !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(149, 176, 142, 0.3);
}

.pagination .page-item:not(.active):hover .page-link {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #000000 !important;
    transform: translateY(-2px);
}

.pagination .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: var(--glass-border) !important;
    color: var(--text-color) !important;
    opacity: 0.4;
}

@media (max-width: 576px) {
    .pagination .page-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Marquee Gallery Styles */
.marquee-wrapper {
    position: relative;
    padding: 20px 0;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 20px;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    min-width: 100%;
    padding: 10px 0;
}

.marquee-item {
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.marquee-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marquee-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(149, 176, 142, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 2rem;
}

.marquee-item:hover .marquee-overlay {
    opacity: 1;
}

.scroll-left {
    animation: scroll-left 40s linear infinite;
}

.scroll-right {
    animation: scroll-right 40s linear infinite;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 20px));
    }
}

@keyframes scroll-right {
    from {
        transform: translateX(calc(-100% - 20px));
    }

    to {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .marquee-item {
        width: 200px;
        height: 150px;
    }
}

/* Hero Mini Styles */
.hero-mini {
    position: relative;
    overflow: hidden;
}

.hero-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png');
    opacity: 0.1;
}

.text-primary {
    color: #95b08e !important;
}

/* Gallery Showcase Redesign */
.gallery-section-dark {
    background-color: #050505;
    position: relative;
    overflow: hidden;
}

.gallery-section-dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(149, 176, 142, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 300px;
    grid-auto-flow: dense;
    gap: 20px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.gallery-item-wrapper {
    width: 100%;
    height: 100%;
}

.gallery-item-wrapper.size-wide { grid-column: span 2; }
.gallery-item-wrapper.size-tall { grid-row: span 2; }
.gallery-item-wrapper.size-big { grid-column: span 2; grid-row: span 2; }

.gallery-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #111;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.4) 40%, 
        transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.5s ease;
}

.overlay-content {
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    color: white;
    width: 100%;
}

.overlay-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(149, 176, 142, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card:hover .overlay-content {
    transform: translateY(0);
}

.section-footer-glass {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        grid-auto-rows: 250px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-auto-rows: 350px;
    }
    
    .gallery-item-wrapper.size-wide,
    .gallery-item-wrapper.size-tall,
    .gallery-item-wrapper.size-big {
        grid-column: auto;
        grid-row: auto;
    }
}

/* --- Premium Subpage Extensions (V2) --- */

.hero-mini {
    padding: 180px 0 120px;
    background: #050505;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Artistic Mesh Background */
.hero-mini::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(circle, rgba(149, 176, 142, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    animation: aura-float 15s ease-in-out infinite alternate;
    z-index: 1;
}

.hero-mini::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    filter: blur(120px);
    animation: aura-float 20s ease-in-out infinite alternate-reverse;
    z-index: 1;
}

@keyframes aura-float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(5%, 10%) rotate(10deg); }
}

.hero-mini .container {
    position: relative;
    z-index: 10;
}

.hero-mini .sub-title {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-mini h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 25px;
    background: linear-gradient(to right, #ffffff, #95b08e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.hero-mini p {
    font-size: 1.3rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Glass Card Enhancements */
.stats-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: 0.8s;
}

.stats-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(149, 176, 142, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.stats-card:hover::before {
    left: 200%;
}

.stats-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: block;
}

.stats-label {
    margin: 0;
    color: #cbd5e1;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Section Header Improvements */
.section-header-left {
    text-align: left;
    margin-bottom: 3rem;
    position: relative;
}

.section-header-left span {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 15px;
    padding-left: 20px;
}

.section-header-left span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 12px;
    height: 2px;
    background: var(--accent-color);
}

.section-header-left h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #ffffff;
    line-height: 1.1;
}

/* Premium Divider */
.ornamental-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(149, 176, 142, 0.2), transparent);
    width: 100%;
    margin: 40px 0;
}

/* Large CTA Wrapper Update */
.contact-form-wrapper.premium-cta {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem !important;
    border-radius: 40px !important;
    border: 1px solid rgba(149, 176, 142, 0.2);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.contact-form-wrapper.premium-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(149, 176, 142, 0.1) 0%, transparent 70%);
    filter: blur(80px);
}
