:root {
    --golden-yellow: #f5b754;
    --black: #121212;
    --charcoal-gray: #2E2E2E;
    --warm-white: #FAF8F5;
    --deep-maroon: #7A2E2E;
    --olive-green: #6A7F2A;
    --warm-sand-beige: #D9C6A5;
    --rust-orange: #C84C0C;
    --slate-gray: #646464;
    --soft-cream: #FFF6E6;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: var(--warm-white);
    margin: 0;
    color: var(--black);
        line-height: 1.6;
    overflow-x: hidden;

}
/* ===========================
   ABOUT US PAGE STYLES
   =========================== */

/* ====================
   ABOUT HEADER & NAVIGATION
   ==================== */
.kzn-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
}

.kzn-header.kzn-scrolled {
    background-color: black;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}
.kzn-navbar {
    padding: 1.5rem 0;
    transition: var(--transition);
}

.kzn-header.kzn-scrolled .kzn-navbar {
    padding: 1rem 0;
}
.kzn-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.collapse.navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1 1 auto;
}
.kzn-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    /* font-size: 1.5rem; */
    /* font-weight: 700; */
    color: var(--golden-yellow);
     width: 70px;
    height: 70px;
}


.whatsapp-btn {
    background-color: #25D366; /* WhatsApp green */
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #1ebe5d;
}

.whatsapp-btn i {
    font-size: 18px;
}


.kzn-logo-text {
    letter-spacing: 0.1em;

}

.kzn-nav-menu {
      flex: 1 1 auto;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    justify-content: center; /* or flex-end if preferred */
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
}

.kzn-nav-link {
    color: var(--warm-white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
     text-decoration: none !important;

}

.kzn-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--golden-yellow);
    transition: var(--transition);

}

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

.kzn-header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.kzn-btn-call {
    color: var(--warm-white);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--golden-yellow);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.kzn-btn-call:hover {
    background-color: var(--golden-yellow);
    color: var(--black);
    transform: translateY(-2px);
}

.kzn-btn-primary {
    background-color: var(--golden-yellow);
    color: var(--black);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
        text-decoration: none;

}

.kzn-btn-primary:hover {
    background-color: var(--rust-orange);
    color: var(--warm-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}


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

.kzn-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--golden-yellow);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hamburger Animation */
.kzn-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.kzn-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.kzn-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu - Fix visibility issues */
@media (max-width: 991px) {
    .kzn-menu-toggle {
        display: flex;
    }

    .kzn-nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(18, 18, 18, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        padding-top: 80px;
    }

    .kzn-nav-menu.show {
        display: flex;
    }

    .kzn-nav-menu .kzn-nav-link {
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--warm-white) !important;
        padding: 1rem 2rem;
        text-decoration: none !important;
        border-bottom: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .kzn-nav-menu .kzn-nav-link:hover {
        color: var(--golden-yellow) !important;
        border-bottom-color: var(--golden-yellow);
    }

    .kzn-header-actions {
        display: none;
    }
}

/* ABOUT Hero Section */
.kzn-about-hero {
    position: relative;
    min-height: 480px;
    height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kzn-about-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    z-index: 0;
}

.kzn-about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(18, 18, 18, 0.92), rgba(122, 46, 46, 0.68));
    z-index: 1;
}

.kzn-about-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: var(--warm-white);
    /* max-width: 900px; */
    padding: 0 2rem;
}

.kzn-breadcrumb {
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--golden-yellow);
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 20px;
}

.kzn-breadcrumb a {
    color: var(--warm-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.kzn-breadcrumb a:hover {
    color: var(--golden-yellow);
}

.kzn-breadcrumb-separator {
    font-size: 0.75rem;
    opacity: 0.7;
}

.kzn-breadcrumb-current {
    color: var(--golden-yellow);
    font-weight: 600;
}

.kzn-about-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.kzn-about-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--warm-sand-beige);
}

.kzn-highlight-year {
    color: var(--golden-yellow);
    font-weight: 700;
}

.kzn-hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    animation: bounce 2s infinite;
}

.kzn-hero-scroll span {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.kzn-hero-scroll i {
    font-size: 1.5rem;
    color: var(--golden-yellow);
}

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

/* Our Story Section */

        .container {
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem;
            padding-right: 1rem;
        }

        /* Section styling */
        .kzn-story-section {
            padding-top: 8rem; /* py-32 */
            padding-bottom: 8rem; /* py-32 */
            background-color: var(--warm-white);
        }

        .grid-layout {
            display: grid;
            gap: 4rem; /* gap-16 */
            align-items: center;
        }

        @media (min-width: 1024px) { /* lg breakpoint */
            .grid-layout {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        /* Media column */
        .kzn-story-media-wrapper {
            position: relative;
            border-radius: 1rem; /* rounded-2xl */
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); /* shadow-xl */
        }

        .kzn-story-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .kzn-story-media-wrapper:hover .kzn-story-image {
            transform: scale(1.05);
        }

        .kzn-story-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--gray-900-opacity-40);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .kzn-story-media-wrapper:hover .kzn-story-video-overlay {
            opacity: 1;
        }

        .kzn-play-button {
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem; /* gap-4 */
        }

        .kzn-play-icon {
            position: relative;
            width: 80px; /* w-20 */
            height: 80px; /* h-20 */
            background-color: var(--golden-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .kzn-play-icon::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 2px solid var(--golden-yellow);
            border-radius: 50%;
            animation: pulse-ring 2s cubic-bezier(0, 0, 0.2, 1) infinite; /* animate-ping */
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }

        .kzn-play-button:hover .kzn-play-icon {
            transform: scale(1.1);
            background-color: var(--warm-white); /* group-hover:bg-gray-50 */
        }

        .kzn-play-icon svg {
            font-size: 2rem; /* text-3xl */
            color: var(--black);
            margin-left: 5px;
            position: relative;
            z-index: 10;
        }

        .kzn-play-text {
            color: var(--warm-white);
            font-size: 1rem; /* text-base */
            font-weight: 600; /* font-semibold */
            text-transform: uppercase;
            letter-spacing: 2px; /* tracking-wider */
        }

        /* Video container */
        .kzn-video-container {
            position: relative;
            width: 100%;
            height: 24rem; /* h-96 */
            background-color: var(--black);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .kzn-video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .kzn-close-video-button {
            position: absolute;
            top: 1rem; /* top-4 */
            right: 1rem; /* right-4 */
            background-color: var(--gray-800); /* bg-gray-800 */
            color: white;
            padding: 0.5rem 1rem; /* p-2 */
            border-radius: 9999px; /* rounded-full */
            border: none;
            cursor: pointer;
            transition: background-color 0.2s ease;
            z-index: 10;
        }

        .kzn-close-video-button:hover {
            background-color: var(--gray-700); /* hover:bg-gray-700 */
        }


        /* Content column */
        .kzn-story-content {
            padding-left: 2rem; /* px-8 */
            padding-right: 2rem; /* px-8 */
        }

        .kzn-section-tag {
            display: inline-block;
            color: var(--golden-yellow);
            font-size: 0.875rem; /* text-sm */
            font-weight: 700; /* font-bold */
            text-transform: uppercase;
            letter-spacing: 3px; /* tracking-widest */
            margin-bottom: 1rem; /* mb-4 */
            position: relative;
            padding-left: 4rem; /* pl-16 */
        }

        .kzn-section-tag::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3rem; /* w-12 */
            height: 2px;
            background-color: var(--golden-yellow);
        }

        .kzn-section-heading {
            font-size: 3rem; /* text-5xl */
            font-weight: 800; /* font-extrabold */
            color: var(--black);
            margin-bottom: 1.5rem; /* mb-6 */
            line-height: 1.2;
        }

        .kzn-story-text {
            font-size: 1.125rem; /* text-lg */
            line-height: 1.8; /* leading-relaxed */
            color: var(--slate-gray);
            margin-bottom: 1.5rem; /* mb-6 */
        }

        .kzn-story-features {
            display: flex;
            flex-direction: column;
            gap: 1rem; /* gap-4 */
            margin-top: 2rem; /* mt-8 */
        }

        
        .kzn-story-feature {
            display: flex;
            align-items: center;
            gap: 1rem; /* gap-4 */
            padding: 1rem; /* p-4 */
            background-color: var(--golden-yellow);
            border-radius: 0.75rem; /* rounded-xl */
            transition: all 0.3s ease;
        }

        .kzn-story-feature:hover {
            background-color: var(--soft-cream);
            transform: translateX(10px);
        }

        .kzn-story-feature svg {
            font-size: 1.5rem; /* text-2xl */
            color: var(--charcoal-gray);
            transition: color 0.3s ease;
        }

        .kzn-story-feature:hover svg {
            color: var(--black);
        }

        .kzn-story-feature span {
            font-size: 1rem; /* text-base */
            font-weight: 600; /* font-semibold */
            color: var(--charcoal-gray);
        }

        .kzn-story-feature:hover span {
            color: var(--black);
        }

/* Timeline Section */
.kzn-timeline-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--soft-cream) 0%, var(--warm-white) 100%);
    position: relative;
    overflow: hidden;
}

.kzn-timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.kzn-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.kzn-section-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--slate-gray);
    margin-top: 1rem;
}

.kzn-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.kzn-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--golden-yellow), transparent);
}

.kzn-timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.kzn-timeline-item:nth-child(odd) {
    flex-direction: row;
}

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

.kzn-timeline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--golden-yellow), #c9a428);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.kzn-timeline-item:hover .kzn-timeline-icon {
    transform: translateX(-50%) scale(1.1) rotate(360deg);
}

.kzn-timeline-icon i {
    font-size: 1rem;
    color: var(--black);
}

.kzn-timeline-content {
    width: calc(50% - 60px);
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.kzn-timeline-item:nth-child(odd) .kzn-timeline-content {
    margin-right: auto;
}

.kzn-timeline-item:nth-child(even) .kzn-timeline-content {
    margin-left: auto;
}

.kzn-timeline-content::before {
    content: '';
    position: absolute;
    top: 35px;
    width: 0;
    height: 0;
    border-style: solid;
}

.kzn-timeline-item:nth-child(odd) .kzn-timeline-content::before {
    right: -15px;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent white;
}

.kzn-timeline-item:nth-child(even) .kzn-timeline-content::before {
    left: -15px;
    border-width: 15px 15px 15px 0;
    border-color: transparent white transparent transparent;
}

.kzn-timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.kzn-timeline-year {
    display: inline-block;
    background: var(--golden-yellow);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.kzn-timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.kzn-timeline-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate-gray);
}

/* Parallax Section */
.kzn-parallax-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kzn-parallax-video {
    position: absolute;
    top: 0;
        left: 0;
    width: 100%;
    height: 100%;
}

.kzn-parallax-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.kzn-parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.85), rgba(122, 46, 46, 0.75));
    z-index: 1;
}

.kzn-parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--warm-white);
    max-width: 800px;
    padding: 0 2rem;
}

.kzn-parallax-heading {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.kzn-parallax-text {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--warm-sand-beige);
}

.kzn-parallax-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: var(--golden-yellow);
    color: var(--black);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.kzn-parallax-btn:hover {
    background: var(--warm-white);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.kzn-parallax-btn i {
    transition: transform 0.3s ease;
}

.kzn-parallax-btn:hover i {
    transform: translateX(5px);
}

/* Team Section */


        /* Section Headers */
        .kzn-section-header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        .kzn-section-tag {
            display: inline-block;
            color: var(--golden-yellow);
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1rem;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .kzn-section-tag::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--golden-yellow), transparent);
        }

        .kzn-section-heading {
            font-size: 3rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 1rem;
            letter-spacing: -1px;
        }

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

        /* Team Section */
        .kzn-team-section {
            padding: 8rem 0;
            background: var(--warm-white);
            position: relative;
            overflow: hidden;
        }
        @media (max-width:700px) {
            #teamsection{
                display: none;
            }
            
        }
.kzn-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}
        .kzn-team-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            background-image: 
                repeating-linear-gradient(45deg, var(--golden-yellow) 0px, var(--golden-yellow) 2px, transparent 2px, transparent 10px);
            pointer-events: none;
        }

        .kzn-team-wrapper {
            position: relative;
            z-index: 1;
        }

        .kzn-team-card {
            position: relative;
            height: 520px;
            perspective: 1000px;
            cursor: pointer;
        }
  

        .kzn-team-front,
        .kzn-team-back {
            position: absolute;
            width: 75%;
            height: 520px;
            backface-visibility: hidden;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 24px;
            overflow: hidden;
        }

        .kzn-team-front {
            background: white;
            box-shadow: var(--shadow-lg);
        }

        .kzn-team-back {
            background: linear-gradient(135deg, var(--charcoal-gray), var(--black));
            transform: rotateY(180deg);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2.5rem;
        }

        .kzn-team-card:hover .kzn-team-front {
            transform: rotateY(-180deg);
        }

        .kzn-team-card:hover .kzn-team-back {
            transform: rotateY(0);
        }

        .kzn-team-image {
            position: relative;
            height: 320px;
            overflow: hidden;
        }

        .kzn-team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .kzn-team-card:hover .kzn-team-image img {
            transform: scale(1.1);
        }

        .kzn-team-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(to top, rgba(18, 18, 18, 0.8), transparent);
        }

        .kzn-team-status {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: var(--golden-yellow);
            color: var(--black);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
            box-shadow: var(--shadow-md);
            animation: kzn-pulse 2s infinite;
        }

        @keyframes kzn-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .kzn-team-info {
            padding: 2rem;
            text-align: center;
        }

        .kzn-team-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 0.5rem;
        }

        .kzn-team-role {
            font-size: 0.938rem;
            color: var(--golden-yellow);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1.5rem;
        }

        .kzn-team-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid var(--soft-cream);
        }

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

        .kzn-stat-number {
            display: block;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--golden-yellow);
            margin-bottom: 0.25rem;
        }

        .kzn-stat-label {
            display: block;
            font-size: 0.75rem;
            color: var(--slate-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Team Back Side */
        .kzn-team-bio {
            color: white;
            text-align: center;
        }

        .kzn-team-bio h5 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--golden-yellow);
        }

        .kzn-team-bio p {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .kzn-team-contact {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .kzn-team-contact a {
            flex: 1;
            max-width: 120px;
            padding: 0.75rem 1rem;
            background: var(--golden-yellow);
            color: var(--black);
            text-decoration: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.875rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .kzn-team-contact a:hover {
            background: white;
            transform: translateY(-3px);
        }

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

        .kzn-team-social a {
            width: 45px;
            height: 45px;
            border: 2px solid rgba(245, 183, 84, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--golden-yellow);
            text-decoration: none;
            transition: var(--transition);
            font-size: 1.125rem;
        }

        .kzn-team-social a:hover {
            background: var(--golden-yellow);
            color: var(--black);
            border-color: var(--golden-yellow);
            transform: translateY(-3px) rotate(360deg);
        }
@media (max-width: 991px) {
    /* .kzn-team-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    } */
}

@media (max-width: 767px) {
    /* .kzn-team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    } */
}

 

        /* Feature Cards */
        .kzn-features-grid {
            position: relative;
            z-index: 1;
        }

        .kzn-feature-card {
            position: relative;
            height: 450px;
            perspective: 1500px;
            cursor: pointer;
        }

        .kzn-feature-front,
        .kzn-feature-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 24px;
            padding: 3rem 2.5rem;
        }

        .kzn-feature-front {
            background: white;
            box-shadow: var(--shadow-lg);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .kzn-feature-back {
            background: linear-gradient(135deg, var(--charcoal-gray), var(--black));
            transform: rotateY(180deg);
            color: white;
        }

        .kzn-feature-card:hover .kzn-feature-front {
            transform: rotateY(-180deg);
        }

        .kzn-feature-card:hover .kzn-feature-back {
            transform: rotateY(0);
        }

        .kzn-feature-icon {
            position: relative;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--golden-yellow), var(--rust-orange));
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            transition: var(--transition);
        }

        .kzn-feature-card:hover .kzn-feature-front .kzn-feature-icon {
            transform: scale(1.05);
        }

        .kzn-feature-icon i {
            font-size: 3rem;
            color: white;
            position: relative;
            z-index: 2;
        }

        .kzn-feature-number {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 40px;
            height: 40px;
            background: var(--black);
            color: var(--golden-yellow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1rem;
            box-shadow: var(--shadow-md);
        }

        .kzn-feature-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 1rem;
        }

        .kzn-feature-text {
            font-size: 1.063rem;
            line-height: 1.8;
            color: var(--slate-gray);
            margin-bottom: 2rem;
        }

        .kzn-feature-action {
            margin-top: auto;
            padding-top: 2rem;
            border-top: 2px solid var(--soft-cream);
        }

        .kzn-feature-action span {
            color: var(--golden-yellow);
            font-weight: 700;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }

        .kzn-feature-card:hover .kzn-feature-action span {
            gap: 1rem;
        }

        /* Feature Back */
        .kzn-feature-back h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--golden-yellow);
            margin-bottom: 2rem;
        }

        .kzn-feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2.5rem;
        }

        .kzn-feature-list li {
            padding: 0.75rem 0;
            font-size: 1.063rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            border-bottom: 1px solid rgba(245, 183, 84, 0.1);
        }

        .kzn-feature-list li:last-child {
            border-bottom: none;
        }

        .kzn-feature-list i {
            color: var(--golden-yellow);
            font-size: 1.125rem;
        }

        .kzn-feature-btn {
            width: 100%;
            padding: 1rem;
            background: var(--golden-yellow);
            color: var(--black);
            border: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .kzn-feature-btn:hover {
            background: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        /* Responsive Design */
        @media (max-width: 991px) {
            .kzn-section-heading {
                font-size: 2.5rem;
            }

            .kzn-team-card,
            .kzn-feature-card {
                height: auto;
                margin-bottom: 2rem;
            }

            .kzn-team-card:hover .kzn-team-front,
            .kzn-feature-card:hover .kzn-feature-front {
                transform: none;
            }

            .kzn-team-card:hover .kzn-team-back,
            .kzn-feature-card:hover .kzn-feature-back {
                transform: rotateY(180deg);
            }
        }

        @media (max-width: 767px) {
            .kzn-section-heading {
                font-size: 2rem;
            }

            .kzn-team-section,
            .kzn-why-choose-section {
                padding: 5rem 0;
            }

            .kzn-team-stats {
                gap: 1rem;
            }
        }


/* Testimonials Section */
.kzn-about-testimonials {
    padding: 8rem 0;
    background: var(--warm-white);
}

.kzn-about-testimonials-swiper {
    padding: 2rem 0 5rem;
}

.kzn-testimonial-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.kzn-testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.kzn-testimonial-quote {
    position: absolute;
    top: -20px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--golden-yellow), #c9a428);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.kzn-testimonial-quote i {
    font-size: 1.5rem;
    color: var(--black);
}

.kzn-testimonial-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.kzn-testimonial-rating i {
    font-size: 1.25rem;
    color: var(--golden-yellow);
}

.kzn-testimonial-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--slate-gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.kzn-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--soft-cream);
}

.kzn-testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--golden-yellow);
}

.kzn-author-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.kzn-author-position {
    font-size: 0.875rem;
    color: var(--slate-gray);
    margin: 0;
}

/* Swiper Navigation */
.kzn-about-testimonials-swiper .swiper-button-next,
.kzn-about-testimonials-swiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.kzn-about-testimonials-swiper .swiper-button-next::after,
.kzn-about-testimonials-swiper .swiper-button-prev::after {
    font-size: 1.25rem;
    color: var(--golden-yellow);
    font-weight: 700;
}

.kzn-about-testimonials-swiper .swiper-button-next:hover,
.kzn-about-testimonials-swiper .swiper-button-prev:hover {
    background: var(--golden-yellow);
}

.kzn-about-testimonials-swiper .swiper-button-next:hover::after,
.kzn-about-testimonials-swiper .swiper-button-prev:hover::after {
    color: var(--black);
}

.kzn-about-testimonials-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--slate-gray);
    opacity: 0.3;
}

.kzn-about-testimonials-swiper .swiper-pagination-bullet-active {
    background: var(--golden-yellow);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* CTA Section */
.kzn-cta-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.kzn-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.kzn-cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kzn-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9), rgba(212, 175, 55, 0.7));
    z-index: 1;
}

.kzn-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--warm-white);
    max-width: 800px;
    padding: 0 2rem;
}

.kzn-cta-heading {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.kzn-cta-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--warm-sand-beige);
    margin-bottom: 2.5rem;
}

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

.kzn-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kzn-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.kzn-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.kzn-cta-btn span,
.kzn-cta-btn i {
    position: relative;
    z-index: 1;
}

.kzn-cta-btn-primary {
    background: var(--golden-yellow);
    color: var(--black);
}

.kzn-cta-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.kzn-cta-btn-secondary {
    background: transparent;
    color: var(--warm-white);
    border: 2px solid var(--warm-white);
}

.kzn-cta-btn-secondary:hover {
    background: var(--warm-white);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Video Modal */
.kzn-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.kzn-video-modal.active {
    display: flex;
}

.kzn-video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.kzn-video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    z-index: 1;
    animation: modalZoom 0.3s ease;
}

@keyframes modalZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.kzn-video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: var(--golden-yellow);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kzn-video-modal-close:hover {
    background: var(--warm-white);
    transform: rotate(90deg);
}

.kzn-video-modal-player {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
}

.kzn-video-modal-player iframe {
    width: 100%;
    height: 100%;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 1200px) {
    .kzn-about-hero-title {
        font-size: 3.5rem;
    }

    .kzn-section-heading {
        font-size: 2.5rem;
    }

    .kzn-parallax-heading {
        font-size: 3rem;
    }

    .kzn-cta-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .kzn-about-hero {
        height: 70vh;
        min-height: 400px;
    }

    .kzn-about-hero-title {
        font-size: 3rem;
    }

    .kzn-about-hero-subtitle {
        font-size: 1.25rem;
    }

    .kzn-story-section,
    .kzn-timeline-section,
    .kzn-team-section,
    .kzn-why-choose-section,
    .kzn-about-testimonials {
        padding: 5rem 0;
    }

    .kzn-story-content {
        padding: 3rem 0 0;
    }

    .kzn-section-heading {
        font-size: 2rem;
    }

    .kzn-timeline::before {
        left: 30px;
    }

    .kzn-timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .kzn-timeline-icon {
        left: 30px;
        transform: translateX(0);
        width: 60px;
        height: 60px;
    }

    .kzn-timeline-icon i {
        font-size: 1.5rem;
    }

    .kzn-timeline-item:hover .kzn-timeline-icon {
        transform: scale(1.1) rotate(360deg);
    }

    .kzn-timeline-content {
        width: 100%;
        margin: 0 !important;
    }

    .kzn-timeline-content::before {
        left: -15px !important;
        border-width: 15px 15px 15px 0 !important;
        border-color: transparent white transparent transparent !important;
    }

    .kzn-parallax-section {
        height: 500px;
    }

    .kzn-parallax-heading {
        font-size: 2.5rem;
    }

    .kzn-parallax-text {
        font-size: 1.25rem;
    }

    .kzn-cta-heading {
        font-size: 2rem;
    }

    .kzn-cta-text {
        font-size: 1.125rem;
    }

    .kzn-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .kzn-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .kzn-about-hero {
        height: 60vh;
        min-height: 350px;
    }

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

    .kzn-about-hero-subtitle {
        font-size: 1.125rem;
    }

    .kzn-breadcrumb {
        font-size: 0.875rem;
    }

    .kzn-story-section,
    .kzn-timeline-section,
    .kzn-team-section,
    .kzn-why-choose-section,
    .kzn-about-testimonials {
        padding: 4rem 0;
    }

    .kzn-section-heading {
        font-size: 1.75rem;
    }

    .kzn-story-text {
        font-size: 1rem;
    }

    .kzn-badge-number {
        font-size: 2rem;
    }

    .kzn-badge-text {
        font-size: 0.75rem;
    }

    .kzn-timeline-item {
        padding-left: 60px;
    }

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

    .kzn-timeline-icon {
        left: 20px;
        width: 50px;
        height: 50px;
    }

    .kzn-timeline-icon i {
        font-size: 1.25rem;
    }

    .kzn-timeline-content {
        padding: 2rem;
    }

    .kzn-timeline-title {
        font-size: 1.25rem;
    }

    .kzn-timeline-year {
        font-size: 0.875rem;
        padding: 0.375rem 1rem;
    }

    .kzn-parallax-section {
        height: 400px;
    }

    .kzn-parallax-heading {
        font-size: 2rem;
    }

    .kzn-parallax-text {
        font-size: 1.125rem;
    }

    .kzn-parallax-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .kzn-feature-box {
        padding: 2rem 1.5rem;
    }

    .kzn-feature-icon {
        width: 70px;
        height: 70px;
    }

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

    .kzn-feature-title {
        font-size: 1.25rem;
    }

    .kzn-testimonial-box {
        padding: 2rem;
    }

    .kzn-testimonial-content {
        font-size: 1rem;
    }

    .kzn-cta-section {
        height: 400px;
    }

    .kzn-cta-heading {
        font-size: 1.75rem;
    }

    .kzn-cta-text {
        font-size: 1rem;
    }

    .kzn-about-testimonials-swiper .swiper-button-next,
    .kzn-about-testimonials-swiper .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 576px) {
    .kzn-about-hero-title {
        font-size: 2rem;
    }

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

    .kzn-story-section,
    .kzn-timeline-section,
    .kzn-team-section,
    .kzn-why-choose-section,
    .kzn-about-testimonials {
        padding: 3rem 0;
    }

    .kzn-section-heading {
        font-size: 1.5rem;
    }

    .kzn-section-description {
        font-size: 1rem;
    }

    .kzn-section-tag {
        font-size: 0.75rem;
        padding-left: 50px;
    }

    .kzn-section-tag::before {
        width: 40px;
    }

    .kzn-play-icon {
        width: 60px;
        height: 60px;
    }

    .kzn-play-icon i {
        font-size: 1.5rem;
    }

    .kzn-timeline-content {
        padding: 1.5rem;
    }

    .kzn-timeline-text {
        font-size: 0.938rem;
    }

    .kzn-parallax-section {
        height: 350px;
    }

    .kzn-parallax-heading {
        font-size: 1.75rem;
    }

    .kzn-parallax-text {
        font-size: 1rem;
    }

    .kzn-parallax-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.938rem;
    }

    .kzn-feature-box {
        padding: 2rem 1.25rem;
    }

    .kzn-feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }

    .kzn-feature-icon i {
        font-size: 1.75rem;
    }

    .kzn-feature-title {
        font-size: 1.125rem;
    }

    .kzn-feature-text {
        font-size: 0.938rem;
    }

    .kzn-testimonial-box {
        padding: 1.75rem;
    }

    .kzn-testimonial-quote {
        width: 50px;
        height: 50px;
        top: -15px;
        right: 20px;
    }

    .kzn-testimonial-quote i {
        font-size: 1.25rem;
    }

    .kzn-testimonial-author img {
        width: 60px;
        height: 60px;
    }

    .kzn-cta-section {
        height: 350px;
    }

    .kzn-cta-heading {
        font-size: 1.5rem;
    }

    .kzn-cta-text {
        font-size: 0.938rem;
    }

    .kzn-cta-btn {
        padding: 1rem 2rem;
        font-size: 0.938rem;
    }

    .kzn-video-modal-close {
        top: -40px;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
}


/* ===========================
   FOOTER STYLES
   =========================== */

/* Newsletter Section */
/* Footer */
.footer {
    /* background: linear-gradient(135deg, var(--dark-charcoal) 0%, #1a1a1a 100%); */
    color: white;
    padding: 80px 20px 30px;
    position: relative;
    background-color: black;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--taxi-yellow), var(--secondary-orange), transparent);
}

/* .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
} */

.footer-column h4 {
    font-size: 24px;
    margin-bottom: 25px;
    color: white;
    /* background: linear-gradient(135deg, var(--taxi-yellow), var(--secondary-orange)); */
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.footer-column p {
    opacity: 0.8;
    line-height: 1.9;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--taxi-yellow);
    padding-left: 10px;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 18px;
    opacity: 0.8;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s;
    font-weight: 700;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--taxi-yellow), var(--secondary-orange));
    color: var(--dark-charcoal);
    transform: translateY(-5px) rotate(360deg);
}

/* .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
} */


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: #111; /* your footer color */
  color: #fff;
  padding: 10px 15px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom .developer-link {
  color: #ffffff; /* highlight color */
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom .developer-link:hover {
  text-decoration: underline;
}

/* Mobile view: stack content vertically */
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}

.footer-logo {
     width: 80px;
    height: 80px;
    /* margin-bottom: 15px; */
    /* display: block; */
}


.payment-methods {
    display: flex;
    gap: 15px;
    align-items: center;
}

.payment-methods .payment-icon img {
    width: 70px;  /* adjust size */
    height: auto;
    object-fit: contain;
    opacity: 1 !important;
}

.payment-icon {
    width: 80px;
    height: 50px;
    background: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark-charcoal);
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.payment-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
}


/* Working Hours */
.kzn-working-hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kzn-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.kzn-hours-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

.kzn-day {
    color: var(--warm-white);
    font-weight: 600;
    font-size: 0.938rem;
}

.kzn-time {
    color: var(--golden-yellow);
    font-weight: 700;
    font-size: 0.938rem;
}

.kzn-hours-item.kzn-emergency {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 2px solid var(--golden-yellow);
    flex-direction: row;
    gap: 0.75rem;
}

.kzn-hours-item.kzn-emergency i {
    color: var(--golden-yellow);
    font-size: 1.25rem;
    animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

.kzn-hours-item.kzn-emergency span {
    color: var(--warm-white);
    font-weight: 600;
}

/* Social Media */
.kzn-footer-social {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.kzn-footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.kzn-footer-social a:hover::before {
    left: 100%;
}

.kzn-footer-social a i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.kzn-social-label {
    font-size: 0.813rem;
    font-weight: 600;
    opacity: 0.8;
}

/* Individual Social Media Colors */
.kzn-social-facebook {
    color: #1877f2;
}

.kzn-social-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.3);
}

.kzn-social-instagram {
    color: #E4405F;
}

.kzn-social-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #E4405F;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(228, 64, 95, 0.3);
}

.kzn-social-twitter {
    color: #1DA1F2;
}

.kzn-social-twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.3);
}

.kzn-social-linkedin {
    color: #0A66C2;
}

.kzn-social-linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(10, 102, 194, 0.3);
}

.kzn-social-youtube {
    color: #FF0000;
}

.kzn-social-youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.kzn-social-whatsapp {
    color: #25D366;
}

.kzn-social-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.kzn-footer-social a:hover i {
    transform: scale(1.2) rotate(360deg);
}

/* App Download Buttons */
.kzn-app-download {
    margin-top: 2rem;
}

.kzn-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.kzn-app-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--warm-white);
    transition: all 0.3s ease;
}

.kzn-app-btn:hover {
    background: var(--golden-yellow);
    border-color: var(--golden-yellow);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.kzn-app-btn i {
    font-size: 2rem;
}

.kzn-app-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.kzn-app-btn span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.kzn-app-btn strong {
    font-size: 1rem;
    font-weight: 700;
}

/* Trust Badges */
.kzn-footer-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 16px;
    border: 2px dashed rgba(212, 175, 55, 0.2);
}

.kzn-badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.kzn-badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.kzn-badge-item i {
    font-size: 1.5rem;
    color: var(--golden-yellow);
}

.kzn-badge-item span {
    font-weight: 600;
    color: var(--charcoal-gray);
    font-size: 0.938rem;
}

/* Footer Bottom */
.kzn-footer-bottom {
    background: var(--black);
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.kzn-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.kzn-footer-bottom-content p {
    color: var(--warm-sand-beige);
    margin: 0;
    font-size: 0.938rem;
}

.kzn-footer-bottom-content p strong {
    color: var(--golden-yellow);
}

.kzn-footer-bottom-content p i {
    color: #ff4444;
    margin: 0 0.25rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1.2); }
}

.kzn-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.kzn-footer-bottom-links a {
    color: var(--warm-sand-beige);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.kzn-footer-bottom-links a:hover {
    color: var(--golden-yellow);
}

.kzn-separator {
    color: var(--slate-gray);
}



/* ====================
   SCROLL TO TOP BUTTON
   ==================== */
.kzn-scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--golden-yellow);
    color: var(--black);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.kzn-scroll-top.kzn-visible {
    opacity: 1;
    visibility: visible;
}

.kzn-scroll-top:hover {
    background-color: var(--rust-orange);
    color: var(--warm-white);
    transform: translateY(-5px);
}


/* Custom Grid System to Replace Bootstrap */
/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.col-lg-4 {
    grid-column: span 4;
}

.col-lg-2 {
    grid-column: span 2;
}

.col-lg-3 {
    grid-column: span 3;
}

.col-md-6 {
    grid-column: span 6;
}


@media (max-width: 991px) {
    .col-lg-4,
    .col-lg-2,
    .col-lg-3 {
        grid-column: span 6;
    }
}

@media (max-width: 767px) {
    .row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .col-lg-4,
    .col-lg-2,
    .col-lg-3,
    .col-md-6 {
        grid-column: span 1;
    }
} */

/* Footer Grid Adjustments */
.kzn-footer-social {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.kzn-footer-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 16px;
}

/* ====================
   RESPONSIVE STYLES
   ==================== */

/* Tablet Styles */
@media (max-width: 991px) {
    .kzn-menu-toggle {
        display: flex;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--black);
        transition: var(--transition);
        padding: 5rem 2rem;
        overflow-y: auto;
        box-shadow: var(--shadow-xl);
    }

    .navbar-collapse.show {
        right: 0;
    }

    .kzn-nav-menu {
        flex-direction: column;
        gap: 1.5rem;
    }

    .kzn-header-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 2rem;
    }

    .kzn-btn-call,
    .kzn-btn-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .kzn-section-title {
        font-size: 2.25rem;
    }

    .kzn-features-content {
        padding-left: 0;
        margin-top: 3rem;
    }

    .kzn-video-content {
        padding: 3rem;
    }

    .kzn-cta-content h2 {
        font-size: 2.25rem;
    }
}

/* Mobile Styles */
@media (max-width: 767px) {
    .kzn-booking-form {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .kzn-section-title {
        font-size: 1.875rem;
    }

    .kzn-section-description {
        font-size: 1rem;
    }

    .kzn-service-card {
        padding: 1.5rem;
    }

    .kzn-fleet-image {
        height: 220px;
    }

    .kzn-fleet-footer {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .kzn-features-image img {
        height: 400px;
    }

    .kzn-features-video-badge {
        width: 120px;
        height: 120px;
        bottom: 1rem;
        right: 1rem;
    }

    .kzn-video-wrapper {
        height: 400px;
    }

    .kzn-video-content {
        padding: 2rem;
    }

    .kzn-video-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .kzn-feature-number {
        font-size: 2.5rem;
    }

    .kzn-testimonial-card {
        padding: 2rem;
    }

    .kzn-testimonial-text {
        font-size: 1rem;
    }

    .kzn-cta-wrapper {
        height: 400px;
    }

    .kzn-cta-content h2 {
        font-size: 1.875rem;
    }

    .kzn-cta-content p {
        font-size: 1rem;
    }

    .kzn-cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .kzn-btn-cta-primary,
    .kzn-btn-cta-secondary {
        width: 100%;
    }

    .kzn-footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .kzn-footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }

    .kzn-stat-number {
        font-size: 3rem;
    }

    .kzn-stat-suffix {
        font-size: 2.5rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .kzn-logo-text {
        font-size: 1.25rem;
    }

    .kzn-section-title {
        font-size: 1.5rem;
    }

    .kzn-service-icon,
    .kzn-feature-icon {
        width: 50px;
        height: 50px;
    }

    .kzn-service-icon svg,
    .kzn-feature-icon svg {
        width: 25px;
        height: 25px;
    }

    .kzn-feature-icon {
        font-size: 1.25rem;
    }

    .kzn-price-amount {
        font-size: 1.5rem;
    }
}


/* values section */
.values-section {
    padding: 8rem 0;
    background: var(--warm-white);
}

.values-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.values-section .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

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

.tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(245, 183, 84, 0.1);
    padding: 0.5rem;
    position: relative;
}

.tab-button {
    flex: 1;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    color: var(--slate-gray);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
}

.tab-button.active {
    background: var(--golden-yellow);
    color: var(--black);
}

.tab-button:hover {
    background: rgba(245, 183, 84, 0.2);
    color: var(--black);
}

.tab-icon-small {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.tab-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--golden-yellow);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.tab-panels-wrapper {
    position: relative;
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.tab-icon-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.tab-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--golden-yellow), var(--rust-orange));
    border-radius: 50%;
    opacity: 0.1;
    transform: scale(1.2);
}

.tab-icon {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--golden-yellow), var(--rust-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(245, 183, 84, 0.3);
}

.tab-icon svg {
    width: 60px;
    height: 60px;
    color: white;
}

.tab-text .big {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
   
    margin-bottom: 1.5rem;
}

.tab-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--slate-gray);
    margin-bottom: 2rem;
}

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

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--golden-yellow);
    color: var(--black);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
}

.feature-badge svg {
    width: 16px;
    height: 16px;
}

/* Responsive for values section */
@media (max-width: 768px) {
    .values-section {
        padding: 5rem 0;
    }

    .values-section .container {
        padding: 0 1rem;
    }

    .values-section .section-header h2 {
        font-size: 2rem;
    }

    .values-section .section-header p {
        font-size: 1rem;
    }

    .tabs {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0;
        background: none;
    }

    .tab-button {
        padding: 0.75rem 1rem;
        justify-content: flex-start;
    }

    .tab-content-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .tab-icon-wrapper {
        width: 150px;
        height: 150px;
    }

    .tab-text h3 {
        font-size: 2rem;
    }

    .tab-text p {
        font-size: 1rem;
    }

    .tab-features {
        justify-content: center;
    }
}


.logo-container {
  display: flex;
  gap: 4px; /* Space between image and text */
}

.footer-logo {
  width: 200px;
  height: 80px;
}

.logo-text {
  font-size: 15px;  /* adjust font size */
  font-weight: bold;
  color: #ffffff; /* or your footer text color */
}


.logo-wrapper {
  display: flex;
  align-items: center; /* centers the text vertically with the image */
 
}
.kzn-logo img {
width: 200px;
  height: 80px;
  max-width: 500px;
}


.logo-text {
  font-size: 16px;
  /* font-weight: bold; */
  color: #fff; /* adjust to match your footer/header */
  /* letter-spacing: 1px; */
}