:root {
    --kfanzz-primary: #F58520D6;
    --kfanzz-primary-dark: #F58520D6;
    --kfanzz-primary-light: #F58520D6;
    --kfanzz-primary-glow: rgba(255, 87, 34, 0.4);
    --kfanzz-primary-rgb: 255, 87, 34;
    --kfanzz-dark: #1a1a1a;
    --kfanzz-darker: #111111;
    --kfanzz-darkest: #0a0a0a;
    --kfanzz-header-bg: #ffffff;
    --kfanzz-light: #f8f9fa;
    --kfanzz-gray: #6c757d;
    --kfanzz-gray-light: #adb5bd;
    --kfanzz-border: #e0e0e0;
    --kfanzz-gradient: linear-gradient(135deg, #F58520D6 0%, #F58520D6 50%, #F58520D6 100%);
    --kfanzz-gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d1f1a 50%, #1a1a1a 100%);
    --kfanzz-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --kfanzz-shadow: 0 10px 40px rgba(0,0,0,0.08);
    --kfanzz-shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --kfanzz-shadow-glow: 0 10px 40px rgba(255, 87, 34, 0.2);
}

body.kfanzz-custom-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: var(--kfanzz-dark);
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

.kfanzz-custom-page .site-header,
.kfanzz-custom-page #site-header,
.kfanzz-custom-page .site-footer,
.kfanzz-custom-page #site-footer,
.kfanzz-custom-page .site-main,
.kfanzz-custom-page .page-header,
.kfanzz-custom-page .entry-header,
.kfanzz-custom-page .entry-content,
.kfanzz-custom-page .site-main > .page-header,
.kfanzz-custom-page .site-main > .page-content {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

.text-orange { color: var(--kfanzz-primary) !important; }

.kfanzz-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: var(--kfanzz-header-bg);
    transition: var(--kfanzz-transition);
    padding: 0;
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.kfanzz-header.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    border-bottom-color: transparent;
}

.kfanzz-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.kfanzz-logo img {
    height: 80px;
    width: auto;
    transition: var(--kfanzz-transition);
}

.kfanzz-logo-text {
    font-size: 28px;
    font-weight: 900;
    color: var(--kfanzz-primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.kfanzz-logo-text span {
    color: #fff;
    font-weight: 700;
}

.kfanzz-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.kfanzz-nav-links li a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 4px;
    transition: var(--kfanzz-transition);
    letter-spacing: 0.5px;
}

.kfanzz-nav-links li a:hover,
.kfanzz-nav-links li a.active {
    color: var(--kfanzz-primary);
}

.kfanzz-nav-links li a.active {
    border-bottom: 2px solid var(--kfanzz-primary);
    background: rgba(255, 87, 34, 0.05);
}

.kfanzz-nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--kfanzz-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.kfanzz-nav-links li a {
    position: relative;
}

.kfanzz-nav-links li a:hover::after {
    width: 80%;
}

.kfanzz-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.kfanzz-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #333;
    transition: var(--kfanzz-transition);
}

.kfanzz-main-content {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
}

.kfanzz-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    background: #000;
    margin-top: 0;
    overflow: hidden;
}

.kfanzz-main-slider {
    width: 100% !important;
    height: 100% !important;
}

.kfanzz-main-slider .swiper-wrapper {
    height: 100% !important;
}

.kfanzz-main-slider .swiper-slide {
    position: relative;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden;
}

.kfanzz-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s linear;
}

.swiper-slide-active .kfanzz-slide-bg {
    transform: scale(1.1);
}

.kfanzz-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(26,26,26,0.5) 40%, rgba(26,26,26,0.85) 100%);
    z-index: 1;
}

.kfanzz-slider-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center bottom, rgba(255,87,34,0.15) 0%, transparent 60%);
}

.kfanzz-slider-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.kfanzz-slider-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    text-shadow: 0 5px 30px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    line-height: 1.1;
}

.kfanzz-slider-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
}

.swiper-slide-active .kfanzz-slider-content h1 {
    animation: kfanzzSlideUp 0.8s forwards 0.3s;
}

.swiper-slide-active .kfanzz-slider-subtitle {
    animation: kfanzzSlideUp 0.8s forwards 0.5s;
}

.kfanzz-slider-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.swiper-slide-active .kfanzz-slider-cta {
    animation: kfanzzSlideUp 0.8s forwards 0.7s;
}

@keyframes kfanzzSlideUp {
    to { opacity: 1; transform: translateY(0); }
}

.kfanzz-btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background: var(--kfanzz-gradient);
    background-size: 200% auto;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
    transition: var(--kfanzz-transition);
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

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

.kfanzz-btn-primary:hover::before {
    left: 100%;
}

.kfanzz-btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.4);
}

.kfanzz-btn-outline {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none !important;
    border-radius: 50px;
    font-size: 14px;
    letter-spacing: 1px;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--kfanzz-transition);
    text-transform: uppercase;
}

.kfanzz-btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.kfanzz-btn-sm {
    display: inline-block;
    padding: 8px 20px;
    background: var(--kfanzz-primary);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 0.5px;
    border: none;
    transition: var(--kfanzz-transition);
    cursor: pointer;
}

.kfanzz-btn-sm:hover {
    background: var(--kfanzz-primary-dark);
    transform: translateY(-2px);
}

.kfanzz-main-slider .swiper-button-next,
.kfanzz-main-slider .swiper-button-prev {
    color: #fff !important;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: var(--kfanzz-transition);
}

.kfanzz-main-slider .swiper-button-next::after,
.kfanzz-main-slider .swiper-button-prev::after {
    font-size: 18px;
}

.kfanzz-main-slider .swiper-button-next:hover,
.kfanzz-main-slider .swiper-button-prev:hover {
    background: var(--kfanzz-primary);
}

.kfanzz-main-slider .swiper-pagination {
    bottom: 30px !important;
}

.kfanzz-main-slider .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 0.4;
    width: 12px;
    height: 12px;
    transition: var(--kfanzz-transition);
}

.kfanzz-main-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--kfanzz-primary) !important;
    width: 35px;
    border-radius: 6px;
}

.kfanzz-page-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    visibility: visible !important;
    overflow: hidden;
    background-attachment: fixed;
}

.kfanzz-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(26,26,26,0.75) 60%, rgba(26,26,26,0.92) 100%);
}

.kfanzz-page-hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(transparent, rgba(255,87,34,0.08));
}

.kfanzz-page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 80px;
}

.kfanzz-page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 30px rgba(255,87,34,0.3);
}

.kfanzz-page-hero-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

.kfanzz-page-hero-content h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--kfanzz-gradient);
    margin: 15px auto 0;
    border-radius: 2px;
}

.kfanzz-section {
    padding: 80px 0;
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
}

.kfanzz-section-tag {
    display: inline-block;
    color: var(--kfanzz-primary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.kfanzz-section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--kfanzz-dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.kfanzz-wwd-section .kfanzz-section-title {
    color: var(--kfanzz-primary);
}

.kfanzz-section-divider {
    width: 60px;
    height: 4px;
    background: var(--kfanzz-primary);
    border-radius: 2px;
    margin-bottom: 25px;
}

.kfanzz-section-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--kfanzz-gray);
}

/* New Stats Bar */
.kfanzz-stats-bar {
    background: var(--kfanzz-primary);
    /* padding: 20px 0; */
    /* margin-top: -30px; */
    position: relative;
    z-index: 10;
}

.kfanzz-stat-item {
    text-align: center;
    padding: 10px 0;
}

.kfanzz-stats-bar .kfanzz-stat-number {
    color: #fff !important;
    background: none !important;
    -webkit-text-fill-color: #fff !important;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.kfanzz-stats-bar .kfanzz-stat-label {
    color: #fff !important;
    font-size: 13px;
    letter-spacing: 2px;
}

/* New About Preview */
.kfanzz-about-preview-new {
    position: relative;
    background-color: #fff;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 30px 30px;
    padding: 100px 0;
    overflow: hidden;
}

.kfanzz-about-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.kfanzz-about-preview-new .container {
    position: relative;
    z-index: 1;
}

.kfanzz-about-blob-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.kfanzz-about-blob-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kfanzz-about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 87, 34, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.kfanzz-about-image-overlay h2 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 900;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    margin: 0;
}

.kfanzz-about-title-new {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #333;
}

.kfanzz-about-text-new {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .kfanzz-about-blob-image {
        height: 350px;
        margin-bottom: 40px;
    }
    .kfanzz-about-title-new {
        font-size: 2.2rem;
    }
}

.kfanzz-wwd-section {
    background: var(--kfanzz-light);
}

.kfanzz-service-card-new {
    position: relative;
    height: 220px;
    border-radius: 4px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--kfanzz-transition);
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.kfanzz-service-card-new::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--kfanzz-primary);
    border-radius: 2px;
    z-index: 3;
    pointer-events: none;
}

.kfanzz-service-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.2);
}

.kfanzz-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: var(--kfanzz-transition);
}

.kfanzz-service-card-new:hover .kfanzz-service-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.kfanzz-service-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    width: 100%;
}

.kfanzz-service-content h3 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.kfanzz-service-divider {
    width: 40px;
    height: 2px;
    background: var(--kfanzz-primary);
    margin: 0 auto;
}

.kfanzz-wwd-logo {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.kfanzz-wwd-logo img {
    max-width: 200px;
    height: auto;
}

.kfanzz-news-section {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.kfanzz-news-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.kfanzz-news-section .container {
    position: relative;
    z-index: 1;
}

.kfanzz-news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--kfanzz-shadow);
    transition: var(--kfanzz-transition);
    height: 100%;
    border: 1px solid var(--kfanzz-border);
    position: relative;
}

.kfanzz-news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--kfanzz-shadow-glow);
    border-color: rgba(255, 87, 34, 0.15);
}

.kfanzz-news-card-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.kfanzz-news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.kfanzz-news-card:hover .kfanzz-news-card-img img {
    transform: scale(1.08);
}

.kfanzz-news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--kfanzz-primary);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.1;
}

.kfanzz-news-date .day {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
}

.kfanzz-news-date .month {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kfanzz-news-card-body {
    padding: 25px;
}

.kfanzz-news-card-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.kfanzz-news-card-body p {
    color: var(--kfanzz-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.kfanzz-read-more {
    color: var(--kfanzz-primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--kfanzz-transition);
}

.kfanzz-read-more:hover {
    color: var(--kfanzz-primary-dark);
}

.kfanzz-read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.kfanzz-read-more:hover i {
    transform: translateX(5px);
}

.kfanzz-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.kfanzz-tabs {
    display: flex;
    list-style: none;
    padding: 5px;
    margin: 0;
    background: var(--kfanzz-light);
    border-radius: 50px;
    gap: 5px;
    flex-wrap: wrap;
    justify-content: center;
}

.kfanzz-tabs li button {
    padding: 12px 25px;
    border: none;
    background: transparent;
    color: var(--kfanzz-gray);
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--kfanzz-transition);
    white-space: nowrap;
}

.kfanzz-tabs li button i {
    margin-right: 6px;
}

.kfanzz-tabs li button.active,
.kfanzz-tabs li button:hover {
    background: var(--kfanzz-primary);
    color: #fff;
}

.kfanzz-event-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--kfanzz-shadow);
    transition: var(--kfanzz-transition);
    height: 100%;
    border: 1px solid var(--kfanzz-border);
    position: relative;
}

.kfanzz-event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--kfanzz-shadow-glow);
    border-color: rgba(255, 87, 34, 0.15);
}

.kfanzz-event-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.kfanzz-event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.kfanzz-event-card:hover .kfanzz-event-card-img img {
    transform: scale(1.05);
}

.kfanzz-event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--kfanzz-primary);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.1;
}

.kfanzz-event-date-badge .day {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
}

.kfanzz-event-date-badge .month {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kfanzz-event-card-body {
    padding: 25px;
}

.kfanzz-event-card-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.kfanzz-event-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 12px;
}

.kfanzz-event-meta span {
    font-size: 0.85rem;
    color: var(--kfanzz-gray);
}

.kfanzz-event-meta span i {
    color: var(--kfanzz-primary);
    margin-right: 6px;
    width: 16px;
}

.kfanzz-event-card-body p {
    color: var(--kfanzz-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.kfanzz-modal .modal-header {
    background: var(--kfanzz-header-bg);
    color: #fff;
    border: none;
}

.kfanzz-modal .modal-body {
    padding: 30px;
}

.kfanzz-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--kfanzz-gray);
}

.kfanzz-empty-state i {
    font-size: 3rem;
    color: var(--kfanzz-border);
    margin-bottom: 15px;
    display: block;
}

.kfanzz-empty-state p {
    font-size: 1.1rem;
}

.kfanzz-gallery-group {
    margin-bottom: 40px;
}

.kfanzz-gallery-group-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--kfanzz-border);
    position: relative;
}

.kfanzz-gallery-group-title span {
    background: #fff;
    padding-right: 20px;
    position: relative;
    z-index: 1;
}

.kfanzz-gallery-group-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--kfanzz-primary);
}

.kfanzz-gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 200px;
}

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

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

.kfanzz-gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--kfanzz-transition);
}

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

.kfanzz-gallery-item-overlay i {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.kfanzz-gallery-item-overlay span {
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
    padding: 0 10px;
}

.kfanzz-video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--kfanzz-shadow);
    transition: var(--kfanzz-transition);
    border: 1px solid var(--kfanzz-border);
}

.kfanzz-video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--kfanzz-shadow-hover);
}

.kfanzz-video-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.kfanzz-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kfanzz-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--kfanzz-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none;
    transition: var(--kfanzz-transition);
}

.kfanzz-play-btn:hover {
    background: var(--kfanzz-primary-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

.kfanzz-play-btn i {
    font-size: 1.2rem;
    margin-left: 3px;
}

.kfanzz-video-info {
    padding: 20px;
    text-align: center;
}

.kfanzz-video-info h5 {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

.kfanzz-pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.kfanzz-pagination li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--kfanzz-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--kfanzz-border);
    transition: var(--kfanzz-transition);
}

.kfanzz-pagination li.active a,
.kfanzz-pagination li a:hover {
    background: var(--kfanzz-primary);
    color: #fff;
    border-color: var(--kfanzz-primary);
}

.kfanzz-about-img-wrapper {
    position: relative;
}

.kfanzz-about-main-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--kfanzz-shadow);
}

.kfanzz-about-img-accent {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--kfanzz-primary);
    border-radius: 12px;
    z-index: -1;
}

.kfanzz-about-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--kfanzz-gray);
}

.kfanzz-about-content p {
    margin-bottom: 15px;
}

.kfanzz-team-section {
    background: var(--kfanzz-light);
}

.kfanzz-team-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--kfanzz-shadow);
    transition: var(--kfanzz-transition);
    text-align: center;
    border: 1px solid var(--kfanzz-border);
}

.kfanzz-team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--kfanzz-shadow-glow);
    border-color: rgba(255, 87, 34, 0.2);
}

.kfanzz-team-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.kfanzz-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.kfanzz-team-card:hover .kfanzz-team-img img {
    transform: scale(1.05);
}

.kfanzz-team-placeholder {
    width: 100%;
    height: 100%;
    background: var(--kfanzz-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--kfanzz-border);
}

.kfanzz-team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 20px 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--kfanzz-transition);
}

.kfanzz-team-card:hover .kfanzz-team-overlay {
    opacity: 1;
    transform: translateY(0);
}

.kfanzz-team-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.kfanzz-team-info {
    padding: 20px;
}

.kfanzz-team-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.kfanzz-team-info span {
    color: var(--kfanzz-primary);
    font-size: 0.85rem;
    font-weight: 600;
}

.kfanzz-back-link {
    display: inline-block;
    color: var(--kfanzz-primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: var(--kfanzz-transition);
}

.kfanzz-back-link:hover {
    color: var(--kfanzz-primary-dark);
}

.kfanzz-back-link i {
    margin-right: 8px;
}

.kfanzz-article-featured-img {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.kfanzz-article-featured-img img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

.kfanzz-article-content {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #444;
}

.kfanzz-article-content p {
    margin-bottom: 20px;
}

.kfanzz-article-video {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--kfanzz-shadow);
}

.kfanzz-contact-info {
    padding: 20px 0;
}

.kfanzz-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.kfanzz-contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kfanzz-primary);
    font-size: 1.2rem;
}

.kfanzz-contact-detail h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.kfanzz-contact-detail p {
    color: var(--kfanzz-gray);
    font-size: 0.9rem;
    margin: 0;
}

.kfanzz-contact-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--kfanzz-shadow);
    border: 1px solid var(--kfanzz-border);
}

.kfanzz-form-group {
    margin-bottom: 5px;
}

.kfanzz-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--kfanzz-dark);
    margin-bottom: 6px;
    display: block;
}

.kfanzz-form-group label span {
    color: var(--kfanzz-primary);
}

.kfanzz-form-group input,
.kfanzz-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--kfanzz-border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--kfanzz-transition);
    background: var(--kfanzz-light);
    box-sizing: border-box;
}

.kfanzz-form-group input:focus,
.kfanzz-form-group textarea:focus {
    border-color: var(--kfanzz-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
    background: #fff;
}

.kfanzz-social-links {
    display: flex;
    gap: 10px;
}

.kfanzz-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 87, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kfanzz-primary);
    text-decoration: none;
    transition: var(--kfanzz-transition);
    font-size: 1rem;
}

.kfanzz-social-links a:hover {
    background: var(--kfanzz-primary);
    color: #fff;
    transform: translateY(-3px);
}

.kfanzz-footer {
    background: var(--kfanzz-darker);
    padding: 70px 0 0;
    margin-top: 0;
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
    position: relative;
}

.kfanzz-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--kfanzz-gradient);
}

.kfanzz-footer-logo {
    max-width: 120px;
    margin-bottom: 15px;
}

.kfanzz-footer-logo-text {
    font-size: 24px;
    font-weight: 900;
    color: var(--kfanzz-primary);
    margin-bottom: 15px;
}

.kfanzz-footer-logo-text span {
    color: #fff;
    font-weight: 700;
}

.kfanzz-footer-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.7;
}

.kfanzz-footer .kfanzz-social-links a {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.kfanzz-footer .kfanzz-social-links a:hover {
    background: var(--kfanzz-primary);
}

.kfanzz-footer-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kfanzz-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kfanzz-footer-links li {
    margin-bottom: 10px;
}

.kfanzz-footer-links li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--kfanzz-transition);
}

.kfanzz-footer-links li a:hover {
    color: var(--kfanzz-primary);
    padding-left: 5px;
}

.kfanzz-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
}

.kfanzz-footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin: 0;
}

#formResponse .alert {
    border-radius: 10px;
    margin-bottom: 15px;
}

.kfanzz-section-title span {
    background: var(--kfanzz-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kfanzz-events-preview {
    background: var(--kfanzz-light);
}

.kfanzz-gallery-preview {
    background: #fff;
}

.kfanzz-gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 15px;
}

.kfanzz-gallery-preview-grid .kfanzz-gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    height: 100%;
}

.kfanzz-gallery-preview-grid .kfanzz-gallery-item {
    border-radius: 16px;
    height: 100%;
}

.kfanzz-testimonial-section {
    background: var(--kfanzz-darker);
    position: relative;
    overflow: hidden;
}

.kfanzz-testimonial-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,87,34,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.kfanzz-testimonial-section .kfanzz-section-tag {
    color: var(--kfanzz-primary-light);
}

.kfanzz-testimonial-section .kfanzz-section-title {
    color: #fff;
}

.kfanzz-testimonial-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 35px;
    transition: var(--kfanzz-transition);
    height: 100%;
    backdrop-filter: blur(10px);
    position: relative;
}

.kfanzz-testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: rgba(255,87,34,0.15);
}

.kfanzz-testimonial-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,87,34,0.3);
    transform: translateY(-5px);
}

.kfanzz-testimonial-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.kfanzz-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kfanzz-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--kfanzz-primary);
    flex-shrink: 0;
}

.kfanzz-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kfanzz-testimonial-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--kfanzz-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.kfanzz-testimonial-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}

.kfanzz-testimonial-group {
    color: var(--kfanzz-primary-light);
    font-size: 0.8rem;
    font-weight: 600;
}

.kfanzz-cta-section {
    background: var(--kfanzz-gradient);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.kfanzz-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.kfanzz-cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.kfanzz-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.kfanzz-cta-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kfanzz-cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.kfanzz-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: var(--kfanzz-primary) !important;
    font-weight: 800;
    text-decoration: none !important;
    border-radius: 50px;
    font-size: 15px;
    letter-spacing: 1px;
    transition: var(--kfanzz-transition);
    text-transform: uppercase;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.kfanzz-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    background: #fff;
    color: var(--kfanzz-primary-dark) !important;
}

.kfanzz-about-mission-vision {
    background: var(--kfanzz-light);
}

.kfanzz-mv-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    border: 1px solid var(--kfanzz-border);
    transition: var(--kfanzz-transition);
    position: relative;
    overflow: hidden;
}

.kfanzz-mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--kfanzz-gradient);
}

.kfanzz-mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--kfanzz-shadow-glow);
}

.kfanzz-mv-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 87, 34, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--kfanzz-primary);
}

.kfanzz-mv-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.kfanzz-mv-card p {
    color: var(--kfanzz-gray);
    line-height: 1.8;
    margin: 0;
}

.kfanzz-about-stats {
    background: var(--kfanzz-darker);
    position: relative;
    overflow: hidden;
}

.kfanzz-about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(255,87,34,0.06) 0%, transparent 60%);
}

.kfanzz-about-stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.kfanzz-about-stat-item .kfanzz-stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: var(--kfanzz-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.kfanzz-about-stat-item .kfanzz-stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.kfanzz-timeline {
    position: relative;
    padding: 30px 0;
}

.kfanzz-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--kfanzz-primary), rgba(255,87,34,0.2));
}

.kfanzz-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.kfanzz-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.kfanzz-timeline-content {
    width: 45%;
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--kfanzz-shadow);
    border: 1px solid var(--kfanzz-border);
    transition: var(--kfanzz-transition);
}

.kfanzz-timeline-content:hover {
    box-shadow: var(--kfanzz-shadow-glow);
    border-color: rgba(255, 87, 34, 0.2);
}

.kfanzz-timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--kfanzz-gradient);
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px rgba(255,87,34,0.2);
    z-index: 2;
}

.kfanzz-timeline-year {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--kfanzz-primary);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kfanzz-timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.kfanzz-timeline-content p {
    color: var(--kfanzz-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.kfanzz-gallery-item {
    border-radius: 12px;
}

.kfanzz-video-card {
    border-radius: 16px;
}

.kfanzz-contact-form-wrapper {
    border-radius: 20px;
}

.kfanzz-scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.kfanzz-scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.kfanzz-gradient-text {
    background: var(--kfanzz-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kfanzz-section-dark {
    background: var(--kfanzz-darker);
}

.kfanzz-section-dark .kfanzz-section-title {
    color: #fff;
}

.kfanzz-section-dark .kfanzz-section-tag {
    color: var(--kfanzz-primary-light);
}

.kfanzz-featured-video {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.kfanzz-featured-video::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--kfanzz-gradient);
    border-radius: 22px;
    z-index: -1;
}

.kfanzz-featured-video .ratio {
    border-radius: 20px;
    overflow: hidden;
}

.kfanzz-about-img-wrapper {
    position: relative;
}

.kfanzz-about-img-accent {
    border-radius: 16px;
}

.kfanzz-section-tag-center {
    display: block;
    text-align: center;
    color: var(--kfanzz-primary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .kfanzz-menu-toggle {
        display: flex;
    }

    .kfanzz-nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--kfanzz-header-bg);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
        z-index: 100000;
    }

    .kfanzz-nav-links.open {
        right: 0;
    }

    .kfanzz-nav-links li a {
        display: block;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .kfanzz-nav-links li a.active {
        border-bottom: 1px solid var(--kfanzz-primary);
    }

    .kfanzz-hero-section {
        height: 70vh;
        min-height: 450px;
    }

    .kfanzz-page-hero {
        height: 300px;
    }

    .kfanzz-section {
        padding: 50px 0;
    }

    .kfanzz-about-image-grid {
        margin-top: 30px;
    }

    .kfanzz-contact-form-wrapper {
        padding: 25px;
    }

    .kfanzz-gallery-preview-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 150px);
    }

    .kfanzz-gallery-preview-grid .kfanzz-gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .kfanzz-timeline::before {
        left: 20px;
    }

    .kfanzz-timeline-item,
    .kfanzz-timeline-item:nth-child(even) {
        flex-direction: column;
        padding-left: 50px;
    }

    .kfanzz-timeline-content {
        width: 100%;
    }

    .kfanzz-timeline-dot {
        left: 20px;
    }

    .kfanzz-page-hero {
        background-attachment: scroll;
    }
}

@media (max-width: 575px) {
    .kfanzz-hero-section {
        height: 60vh;
        min-height: 400px;
    }

    .kfanzz-page-hero {
        height: 250px;
    }

    .kfanzz-tabs {
        border-radius: 12px;
        flex-direction: column;
    }

    .kfanzz-tabs li button {
        width: 100%;
        text-align: center;
    }

    .kfanzz-gallery-item {
        height: 150px;
    }
}

/* Gallery Folder Styles */
.kfanzz-gallery-folder {
    display: block;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--kfanzz-shadow);
    transition: var(--kfanzz-transition);
    text-decoration: none !important;
    height: 100%;
}

.kfanzz-gallery-folder:hover {
    transform: translateY(-10px);
    box-shadow: var(--kfanzz-shadow-hover);
}

.kfanzz-gallery-folder-thumb {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.kfanzz-gallery-folder-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--kfanzz-transition);
}

.kfanzz-gallery-folder:hover .kfanzz-gallery-folder-thumb img {
    transform: scale(1.1);
}

.kfanzz-gallery-folder-info {
    padding: 15px;
    text-align: center;
    background: #fff;
}

.kfanzz-gallery-folder-info h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--kfanzz-dark);
}

.kfanzz-gallery-folder-info span {
    font-size: 0.85rem;
    color: var(--kfanzz-gray);
    display: block;
    margin-top: 5px;
}

.kfanzz-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--kfanzz-primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0;
    transition: var(--kfanzz-transition);
}

.kfanzz-back-btn:hover {
    color: var(--kfanzz-primary-dark);
    transform: translateX(-5px);
}

