

:root {
    --festari-deep-green: #0a3814;
    --festari-green: #0a2e13;
    --festari-green-light: #2d7040;
    --festari-gold: #d4af37;
    --festari-gold-light: #e6c547;
    --festari-gold-dark: #b8941f;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-light: #f8f9fa;
    --shadow-light: rgba(0,0,0,0.1);
    --shadow-medium: rgba(0,0,0,0.15);
    --shadow-heavy: rgba(0,0,0,0.25);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--black);
    overflow-x: hidden;
}

/* Small Contact Strip on Navbar */
.contact-strip {
	position: absolute;
	top: -8px;
	right: 20px;
	background: var(--festari-gold);
	height: 8px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	z-index: 1001;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

.contact-link {
	color: var(--festari-deep-green);
	text-decoration: none;
	font-size: 0.7rem;
	font-weight: 700;
	opacity: 0;
	transition: all 0.3s ease;
	white-space: nowrap;
	display: none;
}

.contact-strip:hover {
	width: auto;
	padding: 4px 12px;
	height: auto;
	min-height: 24px;
	background: var(--festari-gold-light);
}

.contact-strip:hover .contact-link {
	opacity: 1;
	display: inline;
}

/* Always show a small indicator */
.contact-strip::before {
	content: "📞";
	font-size: 0.8rem;
	opacity: 0.8;
	transition: opacity 0.3s ease;
}

.contact-strip:hover::before {
	opacity: 0;
}

/* Stunning Navigation */
/* NAVBAR V2 STYLES */
.custom-navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.custom-navbar .navbar-brand {
    color: var(--festari-deep-green);
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 700;
    transition: color 0.3s ease;
}

.custom-navbar .navbar-brand:hover {
    color: var(--festari-gold);
}

.custom-navbar .nav-link {
    font-weight: 600;
    color: var(--festari-deep-green);
    position: relative;
    padding: 0.6rem 1rem;
    transition: all 0.3s ease;
}

.custom-navbar .nav-link:hover {
    color: var(--festari-gold);
    background: rgba(212, 175, 55, 0.05);
    border-radius: 30px;
}

.custom-navbar .nav-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--festari-gold);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

.custom-navbar .nav-link:hover::before {
    visibility: visible;
    transform: scaleX(1);
}

/* Press Nav with News Indicator */
.press-nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.press-nav-link.has-news {
    color: #ff4757 !important;
    font-weight: 700;
    text-shadow: 0 0 8px rgba(255, 71, 87, 0.3);
    animation: newsPulse 2s infinite;
}

.press-nav-link.has-news:hover {
    color: #ff3742 !important;
    transform: translateY(-1px);
    text-shadow: 0 0 12px rgba(255, 71, 87, 0.5);
}

.press-nav-link.has-news i {
    color: #ff4757 !important;
    text-shadow: 0 0 8px rgba(255, 71, 87, 0.3);
}

.press-nav-link.has-news:hover i {
    color: #ff3742 !important;
    text-shadow: 0 0 12px rgba(255, 71, 87, 0.5);
}

@keyframes newsPulse {
    0% { 
        opacity: 1; 
        transform: scale(1);
        text-shadow: 0 0 8px rgba(255, 71, 87, 0.3);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.02);
        text-shadow: 0 0 12px rgba(255, 71, 87, 0.5);
    }
    100% { 
        opacity: 1; 
        transform: scale(1);
        text-shadow: 0 0 8px rgba(255, 71, 87, 0.3);
    }
}

/* Navbar scroll effect removed */

/* Enhanced Dropdown Styling */
.custom-navbar .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    margin-top: 0.25rem; /* Reduced gap */
    min-width: 200px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
}

/* Ensure no gap between toggle and dropdown */
.custom-navbar .dropdown {
    position: relative;
}

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

/* Create an invisible bridge to prevent dropdown from closing */
.custom-navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

.custom-navbar .dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
}

.custom-navbar .dropdown-item {
    color: var(--festari-deep-green);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.custom-navbar .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    color: var(--festari-gold);
    transform: translateX(5px);
}

.custom-navbar .dropdown-item i {
    width: 20px;
    text-align: center;
}

.custom-navbar .dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(212, 175, 55, 0.2);
}

/* Dropdown arrow animation */
.custom-navbar .dropdown-toggle::after {
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.custom-navbar .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* Mobile dropdown improvements */
@media (max-width: 991px) {
    .custom-navbar .dropdown-menu {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        margin-top: 0.25rem;
    }
    
    .custom-navbar .dropdown-item {
        padding: 0.6rem 1.25rem;
        font-size: 0.95rem;
    }
}

.custom-navbar .logo-img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.custom-navbar .logo-img:hover {
    transform: scale(1.05);
}

/* Navbar scroll effect removed */

/* Ensure no space between navbar and hero */
.hero {
	margin-top: 0 !important;
	padding-top: 0 !important;
	width: 100%;
}

/* Remove any default margins/padding that might create gaps */
.homepage .hero {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* Ensure navbar doesn't have bottom margin */
.custom-navbar {
	margin-bottom: 0 !important;
}

/* Ensure contact bar doesn't create gaps */
.contact-bar {
	margin-bottom: 0 !important;
}

/* Remove any gaps between all sections */
body {
	margin: 0 !important;
	padding: 0 !important;
}

/* Ensure main content has no top margin */
main {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* Remove any default margins from sections */
section {
	margin-top: 0 !important;
}

/* Specifically target the hero section to ensure no gaps */
.homepage main .hero {
	margin-top: 0 !important;
	padding-top: 0 !important;
	position: relative;
	top: 0;
}

/* Override any Bootstrap margins that might create gaps */
.navbar {
	margin-bottom: 0 !important;
}

/* Ensure the hero section starts immediately after navbar */
.homepage .hero {
	position: relative;
	top: 0;
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* Remove any potential gaps from swiper container */
.hero .swiper {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* Ensure swiper slides have no gaps */
.hero .swiper-slide {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* Force remove any gaps - most aggressive approach */
* {
	box-sizing: border-box;
}

/* Ensure no gaps anywhere in the layout */
.homepage .contact-bar + .navbar + main .hero {
	margin-top: 0 !important;
	padding-top: 0 !important;
	position: relative;
	top: 0;
}

/* Override any potential CSS reset or normalize margins */
.homepage .hero,
.homepage .hero * {
	margin-top: 0 !important;
	padding-top: 0 !important;
}

/* Ensure hero images display properly */

.hero .swiper-slide img {
	object-fit: cover;
	object-position: center center;
	width: 100%;
	height: 100vh;
	min-height: 100vh;
}

/* Navigation spacing improvements */
.custom-navbar .navbar-nav {
    gap: 0.5rem;
}

.custom-navbar .nav-item {
    position: relative;
}

/* Enhanced mobile navigation */
@media (max-width: 991px) {
    .admin-btn {
        display: none !important;
    }

    .navbar .navbar-toggler {
        border: 2px solid #2d5a27;
        background-color: rgba(45, 90, 39, 0.15);
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(45, 90, 39, 0.2);
    }

    .navbar .navbar-toggler:hover {
        background-color: rgba(45, 90, 39, 0.25);
        box-shadow: 0 4px 12px rgba(45, 90, 39, 0.3);
        transform: translateY(-1px);
    }

    .navbar .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(45, 90, 39, 0.25);
    }

    /* Navbar scroll effect removed */

    .navbar-collapse {
        background-color: #fff;
        padding: 1rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .custom-navbar .navbar-nav {
        gap: 0.25rem;
    }
    
    .custom-navbar .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 10px;
        margin-bottom: 0.25rem;
    }
    
    .custom-navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        background: rgba(248, 249, 250, 0.8);
        margin: 0.5rem 0 0 1rem;
        border-left: 3px solid var(--festari-gold);
    }
}


/* Press Ripple Effect */
.press-item {
    position: relative;
}

.press-item.has-news {
    animation: pressGlow 2s infinite;
}

.press-item.has-news::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--festari-gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 3s infinite;
    z-index: -1;
}

@keyframes ripple {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }
    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}


.admin-btn {
    display: inline-flex;
    align-items: center;
    color: var(--festari-deep-green) !important;
    padding: 0.6rem 1.2rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    border-radius: 8px;
}
.admin-btn i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.admin-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--festari-gold-light) 0%, var(--festari-gold) 100%);
    color: var(--festari-deep-green) !important;
}

/* Hero Section - Only on Homepage */
.hero-carousel {
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(19, 21, 19, 0.85), rgba(21, 22, 21, 0.8), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.hero-cta {
    background-color: var(--gold, #d4af37);
    color: #000;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hero-cta:hover {
    background-color: #b8932d;
    color: #fff;
}


/*.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
*/
.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: -0.01px;
    background: linear-gradient(135deg, var(--white) 0%, var(--festari-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease-out;
    text-shadow: 2px 2px 4px var(--shadow-light);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: slideInUp 1s ease-out 0.3s both;
    line-height: 1.4;
    text-decoration: 5px ;
}

.hero-cta {
    background: linear-gradient(135deg, var(--festari-gold) 0%, var(--festari-gold-light) 100%);
    color: var(--festari-deep-green);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
    animation: slideInUp 1s ease-out 0.6s both;
    border: 3px solid transparent;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
    background: var(--white);
    color: var(--festari-deep-green);
    border-color: var(--festari-gold);
}

/* Features Section - Only on Homepage */
.features-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, 
        var(--gray-light) 0%, 
        var(--white) 50%, 
        var(--gray-light) 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('');
    opacity: 0.3;
}

.section-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, serif;
    font-size: 3.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--festari-deep-green);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--festari-gold) 0%, var(--festari-gold-light) 100%);
    border-radius: 2px;
}

/*Content for main site*/

.img-base-3 {
    display: flex;
    justify-content: flex-start; /* or center */
    align-items: flex-end;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 0;
}

.img-base-3 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.img-text-split {
    gap: 2rem;
}

.img-text-split img {
    max-height: 400px;
    object-fit: cover;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--festari-deep-green) 0%, var(--festari-gold) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px var(--shadow-medium);
    border-color: var(--festari-gold);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--festari-deep-green);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    color: var(--festari-gold);
    transform: scale(1.2) rotate(5deg);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--festari-deep-green);
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* CTA Section - Only on Homepage */
.cta-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--white) 100%);
    padding: 6rem 0;
    text-align: center;
    color: var(--festari-deep-green);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--festari-gold);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--white);
    color: var(--festari-deep-green);
    padding: 3rem 0;
    text-align: center;
}

.footer p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes goldShimmer {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes luxuryGlow {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 100% 50%;
	}
}

@keyframes sweep {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(100%);
	}
}

@keyframes textPulse {
	0%, 100% {
		opacity: 0.95;
		transform: scale(1) translateY(0px);
	}
	50% {
		opacity: 1;
		transform: scale(1.01) translateY(-2px);
	}
}

@keyframes pillFloat {
	0%, 100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-3px);
	}
}

/* Call-to-Action Section */
.cta-section {
	background: linear-gradient(135deg, var(--festari-deep-green) 0%, var(--festari-green) 100%);
	position: relative;
	overflow: hidden;
}

.cta-section::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
	opacity: 0.3;
}

.cta-container {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 4rem 2rem;
}

.cta-content {
	margin-bottom: 3rem;
}

.cta-title {
	font-size: 3rem;
	font-weight: 800;
	color: var(--white);
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	line-height: 1.2;
}

.cta-subtitle {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 2.5rem;
	font-weight: 300;
	line-height: 1.6;
}

.cta-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.cta-btn-primary {
	background: linear-gradient(135deg, var(--festari-gold) 0%, var(--festari-gold-light) 100%);
	border: none;
	color: var(--festari-deep-green);
	font-weight: 700;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.cta-btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
	color: var(--festari-deep-green);
	background: linear-gradient(135deg, var(--festari-gold-light) 0%, var(--festari-gold) 100%);
}

.cta-btn-secondary {
	border: 2px solid rgba(255, 255, 255, 0.8);
	color: var(--white);
	font-weight: 600;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.cta-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: var(--white);
	color: var(--white);
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-features {
	display: flex;
	justify-content: center;
	gap: 3rem;
	flex-wrap: wrap;
}

.cta-feature {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	color: var(--white);
	font-weight: 500;
	font-size: 1.1rem;
}

.cta-feature i {
	color: var(--festari-gold);
	font-size: 1.3rem;
	text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
	.cta-title {
		font-size: 2.2rem;
	}
	
	.cta-subtitle {
		font-size: 1.1rem;
	}
	
	.cta-buttons {
		flex-direction: column;
		gap: 1rem;
	}
	
	.cta-btn-primary,
	.cta-btn-secondary {
		width: 100%;
		max-width: 300px;
		justify-content: center;
	}
	
	.cta-features {
		gap: 2rem;
	}
	
	.cta-feature {
		font-size: 1rem;
	}
}

/* Quiz Page Styles */
.quiz-hero {
	background: linear-gradient(135deg, var(--festari-deep-green) 0%, var(--festari-green) 100%);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.quiz-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 100 100"><defs><pattern id="quizPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23quizPattern)"/></svg>');
	opacity: 0.3;
}

.quiz-header {
	position: relative;
	z-index: 2;
	padding: 3rem 0;
}

.quiz-badge {
	display: inline-block;
	padding: 0.5rem 1.5rem;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50px;
	color: var(--white);
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1.5rem;
}

.quiz-title {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.quiz-subtitle {
	font-size: 1.3rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 300;
	line-height: 1.6;
}

.quiz-container {
	background: #f8f9fa;
	min-height: 80vh;
}

.quiz-card {
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	margin: 2rem 0;
}

.quiz-progress {
	background: #f8f9fa;
	padding: 1.5rem 2rem;
	border-bottom: 1px solid #e9ecef;
	position: relative;
}

.progress-bar {
	height: 6px;
	background: linear-gradient(90deg, var(--festari-gold) 0%, var(--festari-gold-light) 100%);
	border-radius: 3px;
	transition: width 0.3s ease;
	width: 20%;
}

.progress-text {
	text-align: center;
	margin-top: 0.5rem;
	font-weight: 600;
	color: var(--festari-deep-green);
}

.quiz-content {
	padding: 3rem 2rem;
}

.question-card {
	display: none;
	animation: fadeInUp 0.5s ease;
}

.question-card.active {
	display: block;
}

.question-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--festari-deep-green);
	margin-bottom: 2rem;
	text-align: center;
}

.options-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.option-card {
	position: relative;
	cursor: pointer;
	transition: all 0.3s ease;
}

.option-card input[type="radio"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.option-content {
	background: var(--white);
	border: 2px solid #e9ecef;
	border-radius: 15px;
	padding: 2rem 1.5rem;
	text-align: center;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.option-content i {
	font-size: 2.5rem;
	color: var(--festari-gold);
	transition: all 0.3s ease;
}

.option-content span {
	font-weight: 600;
	color: var(--festari-deep-green);
	font-size: 1.1rem;
}

.option-card:hover .option-content {
	border-color: var(--festari-gold);
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.option-card input[type="radio"]:checked + .option-content {
	border-color: var(--festari-gold);
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 230, 138, 0.05) 100%);
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.option-card input[type="radio"]:checked + .option-content i {
	color: var(--festari-deep-green);
	transform: scale(1.1);
}

.quiz-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 2rem;
	border-top: 1px solid #e9ecef;
}

.quiz-navigation .btn {
	padding: 0.8rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.quiz-navigation .btn-primary {
	background: linear-gradient(135deg, var(--festari-gold) 0%, var(--festari-gold-light) 100%);
	border: none;
	color: var(--festari-deep-green);
}

.quiz-navigation .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Results Section */
.quiz-results {
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.results-card {
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	padding: 3rem;
	text-align: center;
}

.results-header {
	margin-bottom: 3rem;
}

.results-header i {
	font-size: 4rem;
	color: var(--festari-gold);
	margin-bottom: 1rem;
}

.results-title {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--festari-deep-green);
	margin-bottom: 1rem;
}

.results-subtitle {
	font-size: 1.2rem;
	color: #6c757d;
	margin-bottom: 0;
}

.program-card-result {
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(244, 230, 138, 0.02) 100%);
	border: 2px solid rgba(212, 175, 55, 0.2);
	border-radius: 20px;
	padding: 2.5rem;
	margin: 2rem 0;
	display: flex;
	align-items: center;
	gap: 2rem;
	text-align: left;
}

.program-icon {
	flex-shrink: 0;
}

.program-icon i {
	font-size: 4rem;
	color: var(--festari-gold);
}

.program-info {
	flex: 1;
}

.program-name {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--festari-deep-green);
	margin-bottom: 1rem;
}

.program-meta {
	display: flex;
	gap: 2rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.program-meta span {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: #6c757d;
	font-weight: 500;
}

.program-description {
	font-size: 1.1rem;
	color: #495057;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.program-features {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.feature-tag {
	background: var(--festari-gold);
	color: var(--festari-deep-green);
	padding: 0.5rem 1rem;
	border-radius: 20px;
	font-size: 0.9rem;
	font-weight: 600;
}

.results-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.results-actions .btn {
	padding: 1rem 2rem;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.results-actions .btn-primary {
	background: linear-gradient(135deg, var(--festari-gold) 0%, var(--festari-gold-light) 100%);
	border: none;
	color: var(--festari-deep-green);
}

.results-actions .btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Enhanced Recommendation System Styles */
.recommendations-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin: 2rem 0;
}

.program-recommendation-card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
	position: relative;
	border: 2px solid transparent;
}

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

.program-recommendation-card.top-match {
	border-color: var(--festari-gold);
	box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.match-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: linear-gradient(135deg, var(--festari-gold), #e6c547);
	color: var(--festari-deep-green);
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 700;
	z-index: 2;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.best-match {
	background: var(--festari-deep-green);
	color: white;
	padding: 0.25rem 0.5rem;
	border-radius: 15px;
	font-size: 0.8rem;
	margin-left: 0.5rem;
}

.program-image {
	height: 200px;
	overflow: hidden;
	position: relative;
}

.program-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.program-recommendation-card:hover .program-image img {
	transform: scale(1.05);
}

.default-program-icon {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--festari-deep-green), #4a7c59);
	color: white;
	font-size: 3rem;
}

.program-content {
	padding: 1.5rem;
}

.program-name {
	color: var(--festari-deep-green);
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.program-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1rem;
}

.program-meta span {
	background: rgba(212, 175, 55, 0.1);
	color: var(--festari-deep-green);
	padding: 0.4rem 0.8rem;
	border-radius: 15px;
	font-size: 0.9rem;
	font-weight: 600;
	display: flex;
	align-items: center;
}

.program-description {
	color: #6c757d;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-size: 0.95rem;
}

.program-actions {
	display: flex;
	gap: 0.75rem;
}

.program-actions .btn {
	flex: 1;
	border-radius: 10px;
	font-weight: 600;
	padding: 0.75rem 1rem;
	transition: all 0.3s ease;
}

.program-actions .btn-primary {
	background: var(--festari-gold);
	border-color: var(--festari-gold);
	color: var(--festari-deep-green);
}

.program-actions .btn-primary:hover {
	background: #e6c547;
	border-color: #e6c547;
	transform: translateY(-2px);
}

.program-actions .btn-outline-primary {
	border-color: var(--festari-gold);
	color: var(--festari-gold);
}

.program-actions .btn-outline-primary:hover {
	background: var(--festari-gold);
	border-color: var(--festari-gold);
	color: var(--festari-deep-green);
}

.no-recommendations {
	text-align: center;
	padding: 3rem 2rem;
	background: #f8f9fa;
	border-radius: 20px;
	border: 2px dashed #dee2e6;
}

.no-recommendations i {
	font-size: 4rem;
	color: #6c757d;
	margin-bottom: 1rem;
}

.no-recommendations h3 {
	color: var(--festari-deep-green);
	margin-bottom: 1rem;
}

.no-recommendations p {
	color: #6c757d;
	margin-bottom: 2rem;
	font-size: 1.1rem;
}

/* Responsive Design for Recommendations */
@media (max-width: 768px) {
	.recommendations-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	
	.program-recommendation-card {
		margin: 0 1rem;
	}
	
	.program-image {
		height: 150px;
	}
	
	.program-content {
		padding: 1.25rem;
	}
	
	.program-meta {
		flex-direction: column;
		gap: 0.5rem;
	}
	
	.program-actions {
		flex-direction: column;
	}
	
	.match-badge {
		position: static;
		margin-bottom: 1rem;
		align-self: flex-start;
	}
}

/* Responsive Design for Quiz */
@media (max-width: 768px) {
	.quiz-title {
		font-size: 2.2rem;
	}
	
	.quiz-subtitle {
		font-size: 1.1rem;
	}
	
	.options-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.option-content {
		padding: 1.5rem 1rem;
	}
	
	.quiz-navigation {
		flex-direction: column;
		gap: 1rem;
	}
	
	.quiz-navigation .btn {
		width: 100%;
		max-width: 300px;
	}
	
	.program-card-result {
		flex-direction: column;
		text-align: center;
	}
	
	.program-meta {
		justify-content: center;
	}
	
	.results-actions {
		flex-direction: column;
		align-items: center;
	}
	
	.results-actions .btn {
		width: 100%;
		max-width: 300px;
	}
}

/* Contact Strip Responsive Design */
@media (max-width: 768px) {
	.contact-strip {
		right: 10px;
		width: 40px;
	}
	
	.contact-strip:hover {
		width: auto;
		min-width: 200px;
	}
}

/* FAQ Section Styles */
.faq-section {
	background: #f8f9fa;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: var(--white);
	border: 1px solid #e9ecef;
	border-radius: 12px;
	margin-bottom: 1rem;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.faq-item:hover {
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	padding: 1.5rem 2rem;
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--festari-deep-green);
}

.faq-question:hover {
	background: rgba(212, 175, 55, 0.05);
	color: var(--festari-deep-green);
}

.faq-question:focus {
	outline: none;
	box-shadow: inset 0 0 0 2px var(--festari-gold);
}

.faq-question span {
	flex: 1;
	margin-right: 1rem;
	line-height: 1.5;
}

.faq-question i {
	font-size: 1.2rem;
	color: var(--festari-gold);
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.faq-question[aria-expanded="true"] i {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 2rem 1.5rem 2rem;
	background: rgba(248, 249, 250, 0.5);
	border-top: 1px solid #e9ecef;
}

.faq-answer p {
	margin-bottom: 1rem;
	color: #495057;
	line-height: 1.6;
}

.faq-answer ul,
.faq-answer ol {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
}

.faq-answer li {
	margin-bottom: 0.5rem;
	color: #495057;
	line-height: 1.5;
}

.faq-answer strong {
	color: var(--festari-deep-green);
	font-weight: 700;
}

.faq-answer a {
	color: var(--festari-gold);
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.faq-answer a:hover {
	color: var(--festari-deep-green);
	text-decoration: underline;
}

/* Animation for FAQ expansion */
.collapse {
	transition: all 0.3s ease;
}

.collapsing {
	transition: height 0.3s ease;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
	.faq-question {
		padding: 1.25rem 1.5rem;
		font-size: 1rem;
	}
	
	.faq-answer {
		padding: 0 1.5rem 1.25rem 1.5rem;
	}
	
	.faq-question span {
		margin-right: 0.75rem;
	}
}

/* Research CTA Button */
.research-cta-btn {
	background: linear-gradient(135deg, var(--festari-gold) 0%, var(--festari-gold-light) 100%);
	border: none;
	color: var(--festari-deep-green);
	font-weight: 700;
	padding: 1rem 2.5rem;
	border-radius: 50px;
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
}

.research-cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
	color: var(--festari-deep-green);
	background: linear-gradient(135deg, var(--festari-gold-light) 0%, var(--festari-gold) 100%);
}

.research-cta-btn:focus {
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
	color: var(--festari-deep-green);
}
.site-footer {
    background: #0a2e13;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer-top {
    border-top: 5px solid #d4af37;
  }
  
  .footer-logo {
    height: 60px;
  }
  
  .footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #ccc;
  }
  
  .footer-title {
    color: #f4e68a;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
  }
  
  .footer-links {
    list-style: none;
    padding-left: 0;
  }
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #d4af37;
  }
  
  .footer-contact {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.7;
  }
  
  .footer-social a {
    font-size: 1.4rem;
    margin-right: 15px;
    color: #ffffff;
    transition: color 0.3s;
  }
  .footer-social a:hover {
    color: #d4af37;
  }
  
  .footer-bottom {
    background-color: #081e0e;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    color: #aaa;
  }
  .footer-bottom a.footer-policy {
    color: #aaa;
    margin-left: 15px;
    text-decoration: none;
  }
  .footer-bottom a.footer-policy:hover {
    color: #f4e68a;
  }
  

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .logo-img {
        height: 60px !important;
        width: 60px;
    }
    
    .navbar-brand {
        font-size: 1.5rem !important;
    }

    .full-split {
        flex-direction: column;
    }

    .half-left,
    .half-right {
        width: 100vw;
        height: 50vh;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

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

/* Admission Link Special Styling */
.admission-link {
    background: linear-gradient(135deg, var(--festari-gold), var(--festari-gold-light));
    color: var(--festari-deep-green) !important;
    border-radius: 25px;
    padding: 0.5rem 1.5rem !important;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admission-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.admission-link:hover::before {
    left: 100%;
}

.admission-link:hover {
    background: linear-gradient(135deg, var(--festari-gold-light), var(--festari-gold));
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    color: var(--festari-deep-green) !important;
}


/* Homepage landing styles (moved from template) */
.navbar {
	z-index: 1030;
	min-height: 80px;
}

.navbar .navbar-toggler {
	border-color: #2d5a27;
	background-color: rgba(45, 90, 39, 0.1);
}

.navbar .navbar-toggler:hover {
	border-color: #1e3d1a;
	background-color: rgba(45, 90, 39, 0.2);
}

.navbar .navbar-toggler:focus {
	box-shadow: 0 0 0 0.2rem rgba(45, 90, 39, 0.25);
	outline: none;
}

.navbar .navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232d5a27' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Navbar scroll effect removed */

.navbar-nav .nav-link {
	display: flex;
	align-items: center;
	padding: 0.75rem 1rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.navbar-nav .nav-link i {
	font-size: 1rem;
	transition: transform 0.3s ease;
}

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

.dropdown-menu {
	border: none;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	border-radius: 12px;
	padding: 0.5rem 0;
	margin-top: 0.5rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
}

.dropdown-item {
	display: flex;
	align-items: center;
	padding: 0.75rem 1.5rem;
	font-weight: 500;
	transition: all 0.3s ease;
	color: #2c3e50;
}

.dropdown-item:hover {
	background: linear-gradient(135deg, var(--festari-gold), #d4af37);
	color: #ffffff;
	transform: translateX(5px);
}

.dropdown-item i {
	font-size: 0.9rem;
	transition: transform 0.3s ease;
}

.dropdown-item:hover i {
	transform: scale(1.1);
}

.dropdown-divider {
	margin: 0.5rem 0;
	border-color: rgba(212, 175, 55, 0.2);
}

/* Hero and Swiper */
.hero {
	position: relative;
	height: 100vh;
	color: var(--white);
	overflow: hidden;
	padding: 0;
	margin: 0;
}

.homepage .hero {
	position: relative;
	height: 100vh;
	color: var(--white);
	overflow: hidden;
	padding: 0;
	margin: 0;
}

.homepage .hero-content {
	padding-top: 0;
	min-height: 100vh;
}

.swiper {
	width: 100%;
	height: 100vh;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.swiper-slide img,
.swiper-image {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: center center;
	display: block;
	min-height: 100vh;
}

.swiper-wrapper {
	margin: 0;
	padding: 0;
}

.swiper-slide { 
	position: relative; 
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.swiper-pagination { bottom: 30px !important; }
.swiper-pagination-bullet { background: rgba(255,255,255,0.7); opacity: 1; width: 12px; height: 12px; margin: 0 6px; }
.swiper-pagination-bullet-active { background: #fff; transform: scale(1.2); }
.swiper-button-prev, .swiper-button-next { color: #fff; text-shadow: 0 2px 6px rgba(0,0,0,0.4); width: 50px; height: 50px; margin-top: -25px; }
.swiper-button-prev:after, .swiper-button-next:after { font-size: 24px; font-weight: bold; }
@media (max-width: 991.98px) { .swiper-button-prev, .swiper-button-next { display: none; } }

.homepage .hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	text-align: center;
	padding-top: 20px;
}

.hero-overlay.glass-panel-full {
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(3px);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero-headline {
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 1.2rem;
	background: linear-gradient(45deg, #ffd700 0%, #ffed4e 15%, #ffd700 30%, #b8860b 45%, #ffd700 60%, #ffed4e 75%, #ffd700 100%);
	background-size: 300% 300%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 
		0 2px 4px rgba(0, 0, 0, 0.6),
		0 4px 8px rgba(0, 0, 0, 0.4);
	line-height: 1.05;
	text-align: center;
	max-width: 100%;
	animation: luxuryGlow 6s linear infinite;
	letter-spacing: 0.02em;
	position: relative;
	filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.hero-headline::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
	animation: sweep 3s ease-in-out infinite;
	pointer-events: none;
}

.hero-subtext {
	font-size: 1.4rem;
	margin-bottom: 2.5rem;
	color: #ffffff;
	font-weight: 500;
	text-align: center;
	max-width: 100%;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-style: italic;
	animation: textPulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
	text-shadow: 
		0 1px 2px rgba(0, 0, 0, 0.6),
		0 2px 4px rgba(0, 0, 0, 0.4);
	filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
}

.welcome-pill {
	display: inline-block;
	margin-bottom: 1rem;
	padding: .6rem 1.5rem;
	border-radius: 50px;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 237, 78, 0.2) 50%, rgba(184, 134, 11, 0.3) 100%);
	backdrop-filter: blur(15px);
	border: 2px solid rgba(255, 215, 0, 0.6);
	color: #ffd700;
	font-weight: 800;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 0.9rem;
	box-shadow: 
		0 8px 32px rgba(255, 215, 0, 0.3), 
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		0 2px 4px rgba(0, 0, 0, 0.6),
		0 4px 8px rgba(0, 0, 0, 0.4),
		0 6px 12px rgba(0, 0, 0, 0.3),
		0 8px 16px rgba(0, 0, 0, 0.2),
		0 12px 24px rgba(0, 0, 0, 0.1);
	position: relative;
	overflow: hidden;
	animation: pillFloat 3s ease-in-out infinite;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.welcome-pill::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
	transition: left 0.6s ease;
}

.welcome-pill::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
}

.welcome-pill:hover::before {
	left: 100%;
}

.welcome-pill:hover::after {
	width: 200px;
	height: 200px;
}

.hero-cta-group { display: flex; gap: 1rem; justify-content: center; align-items: center; margin-bottom: 3rem; flex-wrap: wrap; }
.cta-button { display: inline-block; padding: 15px 40px; text-decoration: none; border-radius: 50px; font-weight: 600; font-size: 1.1rem; transition: all 0.3s ease; text-shadow: none; border: 2px solid transparent; }
.cta-button.primary { background: var(--festari-gold); color: var(--white); box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4); }
.cta-button.primary:hover { background: var(--festari-gold-dark); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6); color: var(--white); }
.cta-button.secondary { background: transparent; color: var(--white); border: 2px solid var(--white); }
.cta-button.secondary:hover { background: var(--white); color: var(--festari-deep-green); transform: translateY(-3px); }
.hero-trust-indicators { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; }
.trust-badge { background: rgba(255, 255, 255, 0.2); backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 25px; color: var(--white); font-size: 0.9rem; font-weight: 500; border: 1px solid rgba(255, 255, 255, 0.3); }

/* Landing sections from template */
.why-choose-section {
	background: var(--white);
	padding: 80px 0;
}

.value-card {
	text-align: center;
	padding: 2rem;
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
	height: 100%;
	border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.value-icon {
	width: 80px;
	height: 80px;
	background: transparent;
	border: 2px solid var(--festari-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 2rem;
	color: var(--festari-gold);
	box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.value-card h4 { font-size: 1.5rem; font-weight: 600; color: var(--festari-deep-green); margin-bottom: 1rem; }
.value-card p { color: var(--festari-green-light); line-height: 1.6; }

.program-highlights-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.program-card {
	background: #f8f9fa;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
	height: 100%;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.program-card:hover { transform: translateY(-8px); box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.15), -12px -12px 24px rgba(255, 255, 255, 0.9); }

.program-image { position: relative; height: 220px; overflow: hidden; border-radius: 20px 20px 0 0; }
.program-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.program-card:hover .program-image img { transform: scale(1.05); }
.program-overlay { position: absolute; top: 15px; right: 15px; }
.program-duration { background: linear-gradient(135deg, var(--festari-gold), #d4af37); color: var(--white); padding: 8px 16px; border-radius: 25px; font-size: 0.9rem; font-weight: 600; box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3); }

.program-content { padding: 2rem; background: #f8f9fa; }
.program-content h4 { font-size: 1.4rem; font-weight: 600; color: var(--festari-deep-green); margin-bottom: 1rem; line-height: 1.3; }
.program-content p { color: #6c757d; margin-bottom: 1.5rem; line-height: 1.6; font-size: 0.95rem; }
.program-benefits { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.benefit-tag { background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05)); color: var(--festari-gold-dark); padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; border: 1px solid rgba(212, 175, 55, 0.2); box-shadow: inset 2px 2px 4px rgba(255, 255, 255, 0.8), inset -2px -2px 4px rgba(212, 175, 55, 0.1); }
.program-cta { display: inline-block; background: linear-gradient(135deg, var(--festari-deep-green), #1e5631); color: var(--white); padding: 12px 28px; border-radius: 25px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), -2px -2px 4px rgba(255, 255, 255, 0.3); }
.program-cta:hover { background: linear-gradient(135deg, var(--festari-gold), #d4af37); transform: translateY(-2px); color: var(--white); box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.15), -3px -3px 6px rgba(255, 255, 255, 0.4); }

.professional-guidance-section { background: var(--white); padding: 60px 0; }
.professional-images-row { display: flex; gap: 1.5rem; justify-content: center; align-items: stretch; }
.professional-image-item { flex: 1; position: relative; height: 500px; border-radius: 20px; overflow: hidden; box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.8); transition: all 0.3s ease; cursor: pointer; }
.professional-image-item:hover { transform: translateY(-8px); box-shadow: 12px 12px 24px rgba(0, 0, 0, 0.15), -6px -6px 12px rgba(255, 255, 255, 0.9); }
.professional-image { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.professional-image-item:hover .professional-image { transform: scale(1.05); }
.professional-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(45, 62, 80, 0.8) 0%, rgba(52, 73, 94, 0.7) 50%, rgba(44, 62, 80, 0.85) 100%); display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.3s ease; }
.professional-image-item:hover .professional-overlay { opacity: 1; }
.professional-content { text-align: center; color: var(--white); padding: 1rem; }

.student-journey-section { background: var(--white); }
.journey-timeline { position: relative; max-width: 800px; margin: 0 auto; }
.journey-timeline::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 4px; height: 100%; background: linear-gradient(135deg, var(--festari-gold), #d4af37); border-radius: 2px; }
.journey-step { display: flex; align-items: center; margin-bottom: 3rem; position: relative; }
.journey-step:nth-child(even) { flex-direction: row-reverse; }
.step-number { width: 60px; height: 60px; background: linear-gradient(135deg, var(--festari-gold), #d4af37); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.5rem; font-weight: 700; z-index: 2; box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3); }
.step-content { background: #f8f9fa; border-radius: 15px; padding: 2rem; margin: 0 2rem; flex: 1; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); border: 1px solid rgba(212, 175, 55, 0.1); }
.step-content h4 { font-size: 1.3rem; font-weight: 600; color: var(--festari-deep-green); margin-bottom: 1rem; }
.step-content p { color: #6c757d; line-height: 1.6; margin-bottom: 1rem; }
.step-features { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.feature-tag { background: linear-gradient(135deg, var(--festari-gold), #d4af37); color: #fff; padding: 0.25rem 0.75rem; border-radius: 15px; font-size: 0.8rem; font-weight: 500; }

.success-stories-section { background: #f8f9fa; }
.testimonial-container { display: flex; flex-direction: column; gap: 1rem; }
.video-frame { position: relative; height: 200px; overflow: hidden; border-radius: 15px; border: 3px solid transparent; transition: all 0.3s ease; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); }
.video-frame iframe { width: 100%; height: 100%; border: none; border-radius: 12px; }
.video-frame.youtube:hover { border-color: #ff0000; box-shadow: 0 12px 40px rgba(255, 0, 0, 0.2); transform: translateY(-2px); }
.video-frame.linkedin:hover { border-color: #0077b5; box-shadow: 0 12px 40px rgba(0, 119, 181, 0.2); transform: translateY(-2px); }
.testimonial-meta { text-align: center; padding: 0.5rem 0; }
.testimonial-meta h4 { font-size: 1rem; font-weight: 600; color: var(--festari-deep-green); margin-bottom: 0.25rem; }
.testimonial-meta p { color: #6c757d; font-size: 0.85rem; font-weight: 500; margin: 0; }

.research-assistance-section { background: var(--white); }
.research-content h2 { font-size: 2.5rem; font-weight: 700; color: var(--festari-deep-green); margin-bottom: 1rem; }
.research-content .section-subtitle { font-size: 1.2rem; color: #6c757d; margin-bottom: 2rem; }
.research-features { margin-bottom: 2rem; }
.research-feature { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; padding: 1rem; background: #f8f9fa; border-radius: 15px; transition: all 0.3s ease; }
.research-feature:hover { background: linear-gradient(135deg, #f8f9fa, #e9ecef); transform: translateX(5px); }
.research-feature .feature-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--festari-gold), #d4af37); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; flex-shrink: 0; }
.research-feature .feature-content h4 { font-size: 1.1rem; font-weight: 600; color: var(--festari-deep-green); margin-bottom: 0.5rem; }
.research-feature .feature-content p { color: #6c757d; line-height: 1.5; margin-bottom: 0; font-size: 0.95rem; }
.research-image { position: relative; text-align: center; }
.research-image img { max-width: 100%; height: 700px; object-fit: cover; border-radius: 20px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }
.research-stats { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); background: #fff; padding: 1.5rem; border-radius: 20px; box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); display: flex; gap: 2rem; border: 1px solid rgba(212, 175, 55, 0.1); }
.research-stats .stat-item { text-align: center; }
.research-stats .stat-item h3 { font-size: 1.5rem; font-weight: 700; color: var(--festari-gold); margin-bottom: 0.25rem; }
.research-stats .stat-item p { font-size: 0.8rem; color: #6c757d; margin-bottom: 0; }

@media (max-width: 768px) {
	.hero-headline { font-size: 2.5rem; }
	.hero-subtext { font-size: 1.2rem; }
	.hero-cta-group { flex-direction: column; align-items: center; }
	.hero-trust-indicators { flex-direction: column; gap: 1rem; }
	.value-card { margin-bottom: 2rem; }
	.program-card { margin-bottom: 2rem; }
	.program-content { padding: 1.5rem; }
	.program-content h4 { font-size: 1.2rem; }
	.program-cta { padding: 10px 24px; font-size: 0.85rem; }
	.professional-images-row { flex-direction: column; gap: 1rem; }
	.professional-image-item { height: 400px; }
}

@media (max-width: 992px) {
	.professional-images-row { flex-direction: column; gap: 1.2rem; }
	.professional-image-item { height: 450px; }
}

@media (max-width: 576px) {
	.professional-guidance-section { padding: 40px 0; }
	.professional-image-item { height: 350px; }
}

/* About Us page styles (moved from aboutus.html) */
.about-hero-section { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); padding: 120px 0 80px; min-height: 100vh; display: flex; align-items: center; }
.about-hero-title { font-size: 3.5rem; font-weight: 700; color: var(--festari-deep-green); margin-bottom: 1.5rem; line-height: 1.2; }
.about-hero-subtitle { font-size: 1.3rem; color: #6c757d; margin-bottom: 2rem; line-height: 1.6; }
.about-hero-stats { display: flex; gap: 2rem; margin-top: 2rem; }
.about-hero-stats .stat-item { text-align: center; }
.about-hero-stats .stat-number { font-size: 2.5rem; font-weight: 700; color: var(--festari-gold); margin-bottom: 0.5rem; }
.about-hero-stats .stat-label { font-size: 1rem; color: #6c757d; margin-bottom: 0; }
.about-hero-image { text-align: center; }
.about-hero-image img { max-width: 100%; height: auto; border-radius: 20px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); }

.mission-vision-section { background: var(--white); }
.foundation-card { text-align: center; padding: 2.5rem 2rem; background: #f8f9fa; border-radius: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; height: 100%; border: 1px solid rgba(212, 175, 55, 0.1); }
.foundation-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); }
.foundation-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--festari-gold), #d4af37); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: #fff; font-size: 2rem; }
.foundation-card h4 { font-size: 1.5rem; font-weight: 600; color: var(--festari-deep-green); margin-bottom: 1rem; }
.foundation-card p { color: #6c757d; line-height: 1.6; margin-bottom: 0; }

.our-story-section { background: #f8f9fa; }
.story-content h2 { font-size: 2.5rem; font-weight: 700; color: var(--festari-deep-green); margin-bottom: 1.5rem; }
.story-text { font-size: 1.1rem; color: #6c757d; line-height: 1.7; margin-bottom: 1.5rem; }
.story-highlights { margin-top: 2rem; }
.highlight-item { display: flex; align-items: center; margin-bottom: 1rem; font-weight: 500; color: var(--festari-deep-green); }
.highlight-item i { color: var(--festari-gold); margin-right: 0.75rem; font-size: 1.2rem; }
.story-image { text-align: center; }
.story-image img { max-width: 100%; height: auto; border-radius: 20px; box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); }

.leadership-section { background: var(--white); }
.leader-card { background: #f8f9fa; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; height: 100%; }
.leader-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); }
.leader-image { height: 250px; overflow: hidden; }
.leader-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.leader-card:hover .leader-image img { transform: scale(1.05); }
.leader-content { padding: 2rem; text-align: center; }
.leader-content h5 { font-size: 1.3rem; font-weight: 600; color: var(--festari-deep-green); margin-bottom: 0.5rem; }
.leader-title { color: var(--festari-gold); font-weight: 500; margin-bottom: 1rem; }
.leader-bio { color: #6c757d; line-height: 1.6; margin-bottom: 1.5rem; font-size: 0.95rem; }
.leader-social { display: flex; justify-content: center; gap: 1rem; }
.leader-social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--festari-gold); color: #fff; border-radius: 50%; text-decoration: none; transition: all 0.3s ease; }
.leader-social a:hover { background: var(--festari-deep-green); transform: translateY(-3px); }

.achievements-section { background: #f8f9fa; }
.achievement-card { text-align: center; padding: 2rem; background: var(--white); border-radius: 20px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; height: 100%; }
.achievement-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); }
.achievement-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--festari-gold), #d4af37); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: #fff; font-size: 2rem; }
.achievement-card h4 { font-size: 1.3rem; font-weight: 600; color: var(--festari-deep-green); margin-bottom: 1rem; }
.achievement-card p { color: #6c757d; line-height: 1.6; margin-bottom: 0; font-size: 0.95rem; }

.testimonials-section { background: var(--white); }
.testimonial-card { background: #f8f9fa; border-radius: 20px; padding: 2rem; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; height: 100%; }
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); }
.testimonial-content { margin-bottom: 1.5rem; }
.testimonial-content p { font-style: italic; color: #6c757d; line-height: 1.6; margin-bottom: 0; font-size: 1.1rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-image { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.author-info h6 { font-weight: 600; color: var(--festari-deep-green); margin-bottom: 0.25rem; }
.author-info p { color: var(--festari-gold); margin-bottom: 0; font-size: 0.9rem; }

.about-cta-section { background: linear-gradient(135deg, var(--festari-deep-green), var(--festari-green)); color: #fff; }
.about-cta-section .cta-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.about-cta-section .cta-text { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }
.about-cta-section .cta-actions .btn { padding: 12px 30px; font-weight: 600; border-radius: 25px; transition: all 0.3s ease; }
.about-cta-section .cta-actions .btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); }

@media (max-width: 768px) {
	.about-hero-title { font-size: 2.5rem; }
	.about-hero-subtitle { font-size: 1.1rem; }
	.about-hero-stats { flex-direction: column; gap: 1rem; }
	.story-content h2 { font-size: 2rem; }
	.about-cta-section .cta-title { font-size: 2rem; }
	.about-cta-section .cta-actions { flex-direction: column; align-items: center; }
	.about-cta-section .cta-actions .btn { margin-bottom: 1rem; width: 100%; max-width: 300px; }
}

/* Glassmorphism Base Styles */
.glass-card {
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 20px;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	transition: all 0.3s ease;
}

.glass-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.5);
}

.hero-bg-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 40% 40%, rgba(120, 119, 198, 0.2) 0%, transparent 50%);
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%, 100% { transform: translateY(0px) rotate(0deg); }
	50% { transform: translateY(-20px) rotate(1deg); }
}

/* Research page styles */
.research-hero-section { 
	background: linear-gradient(135deg, var(--festari-deep-green) 0%, var(--festari-green) 100%); 
	position: relative;
	overflow: hidden;
}

.research-stats-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
}

.stat-card {
	padding: 1.5rem;
	text-align: center;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 15px;
	transition: all 0.3s ease;
}

.stat-card:hover {
	transform: translateY(-5px) scale(1.05);
	background: rgba(255, 255, 255, 0.3);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 500;
}

.service-card {
	padding: 2rem;
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 20px;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	transition: all 0.3s ease;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.5);
	background: rgba(255, 255, 255, 0.35);
}

.service-icon {
	width: 70px;
	height: 70px;
	background: linear-gradient(135deg, var(--festari-gold), var(--festari-gold-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--festari-deep-green);
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.service-features {
	list-style: none;
	padding: 0;
}

.service-features li {
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	color: #6c757d;
	position: relative;
	padding-left: 1.5rem;
}

.service-features li:before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--festari-gold);
	font-weight: bold;
}

.service-features li:last-child {
	border-bottom: none;
}

.process-card {
	padding: 2rem;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	transition: all 0.3s ease;
	height: 100%;
}

.process-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.3);
}

.process-number {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, var(--festari-gold), var(--festari-gold-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--festari-deep-green);
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 1.5rem;
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.process-features {
	margin-top: 1rem;
}

.process-features .badge {
	margin: 0.25rem;
	font-size: 0.75rem;
}

.cta-card {
	padding: 3rem;
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 25px;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.cta-feature {
	padding: 1rem;
}

.cta-feature i {
	font-size: 2rem;
	margin-bottom: 0.5rem;
}

/* Webinars page styles */
.webinars-hero-section {
	background: linear-gradient(135deg, var(--festari-deep-green) 0%, var(--festari-green) 100%);
	position: relative;
	overflow: hidden;
}

/* Catchy hero card with leafy gold accent */
.webinars-hero-card {
	background: rgba(255,255,255,0.85);
	border: 1px solid rgba(0,0,0,0.04);
	box-shadow: 0 30px 70px rgba(0,0,0,0.08);
	border-radius: 28px;
}

.leaf-decor {
	position: absolute;
	top: -10px;
	right: -10px;
	pointer-events: none;
	filter: drop-shadow(0 12px 30px rgba(212,175,55,0.35));
}

.webinar-title {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: clamp(2rem, 5vw, 4rem);
	color: var(--festari-deep-green);
}

.episode-number {
	font-family: 'Playfair Display', serif;
	font-size: clamp(3rem, 8vw, 5rem);
	font-weight: 700;
	color: var(--festari-deep-green);
	line-height: 1;
	margin: .25rem 0 1rem 0;
}

.webinar-subtitle { color: #5c6b64; }

.accent-bar {
	width: 120px;
	height: 6px;
	border-radius: 6px;
	background: linear-gradient(90deg, var(--festari-gold), var(--festari-gold-light));
}

.webinar-flyer-card {
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 20px;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	overflow: hidden;
	transition: all 0.3s ease;
}

.webinar-flyer-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px 0 rgba(31, 38, 135, 0.5);
}

.flyer-image-container {
	position: relative;
	overflow: visible;
}

.flyer-image {
	width: 100%;
	height: auto;
	object-fit: contain;
	transition: transform 0.3s ease;
	background: #ffffff;
}

.webinar-flyer-card:hover .flyer-image {
	transform: scale(1.05);
}

.flyer-overlay {
	position: absolute;
	top: 1rem;
	right: 1rem;
}

.flyer-badge {
	background: rgba(212, 175, 55, 0.9);
	backdrop-filter: blur(10px);
	color: var(--festari-deep-green);
	padding: 0.5rem 1rem;
	border-radius: 25px;
	font-size: 0.9rem;
	font-weight: 500;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.flyer-content {
	padding: 1.5rem;
}

.webinar-details {
	margin-top: 1rem;
}

.detail-item {
	display: flex;
	align-items: center;
	margin-bottom: 0.75rem;
	color: #6c757d;
}

.detail-item i {
	margin-right: 0.75rem;
	font-size: 1.1rem;
	color: var(--festari-gold);
}

.video-container {
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 15px;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.video-header h5 {
	color: #333;
	font-weight: 600;
}

/* Remove inner paddings from video frame so it looks edge-to-edge */
.video-container > .ratio {
	border-radius: 15px;
}

.certificate-notice {
	background: rgba(255, 193, 7, 0.1);
	border: 1px solid rgba(255, 193, 7, 0.3);
	border-radius: 10px;
}

.upcoming-card {
	padding: 2rem;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	transition: all 0.3s ease;
	height: 100%;
}

.upcoming-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.3);
}

.upcoming-icon {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, var(--festari-gold), var(--festari-gold-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--festari-deep-green);
	font-size: 2rem;
	margin: 0 auto 1.5rem;
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.contact-card {
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 25px;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.contact-item {
	padding: 1rem;
}

.contact-item i {
	font-size: 2.5rem;
	display: block;
	color: var(--festari-gold);
}

.contact-item h6 {
	margin: 0.5rem 0;
	color: #333;
	font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.research-stats-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
	}
	
	.stat-number {
		font-size: 2rem;
	}
	
	.glass-card {
		padding: 1.5rem;
	}
	
	.cta-card {
		padding: 2rem;
	}
	
	.flyer-image {
		height: 320px;
	}
}

.btn-lux {
	background: linear-gradient(135deg, var(--festari-gold), var(--festari-gold-light));
	color: var(--festari-deep-green) !important;
	border: none;
	border-radius: 30px;
	box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
	transition: all 0.25s ease;
}
.btn-lux:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(212, 175, 55, 0.45);
}
.btn-outline-lux {
	background: transparent;
	color: #fff !important;
	border: 2px solid rgba(255,255,255,0.8);
	border-radius: 30px;
	transition: all 0.25s ease;
}
.btn-outline-lux:hover {
	background: rgba(255,255,255,0.15);
	transform: translateY(-3px);
}

/* Episode layout */
.episode-grid { align-items: stretch; }

/* Subtle neumorphism panel */
.soft-card {
	background: #ffffff;
	border-radius: 20px;
	box-shadow: 8px 8px 16px rgba(0,0,0,0.08), -8px -8px 16px rgba(255,255,255,0.7);
	border: 1px solid rgba(0,0,0,0.03);
}

.meta-list { margin-top: 0.5rem; }
.meta-item { color: #4b4b4b; margin-bottom: 0.5rem; display: flex; align-items: center; }
.meta-item i { color: var(--festari-gold); }

/* Pill tags */
.pill-tag {
	background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(212,175,55,0.05));
	color: var(--festari-green-light);
	border: 1px solid rgba(212,175,55,0.25);
	border-radius: 999px;
	padding: 6px 12px;
	font-size: .85rem;
	font-weight: 600;
}