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

        :root {
            --primary-orange: #E03A00;
            --primary-dark: #B62E00;
            --gold: #D4AF37;
            --gold-light: #F5E6B0;
            --deep-charcoal: #1E2A2E;
            --soft-gray: #F8F9FC;
            --text-dark: #2C3E4E;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--soft-gray);
            color: var(--text-dark);
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, .navbar-brand {
            font-family: 'Playfair Display', serif;
        }

        /* Navbar styling */
        .navbar {
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-dark) 100%);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            padding: 0.8rem 0;
            transition: all 0.3s;
        }
        .navbar .nav-link {
            color: #fff !important;
            font-weight: 600;
            font-size: 1.05rem;
            margin: 0 0.4rem;
            padding: 0.5rem 0.8rem;
            border-radius: 40px;
            transition: all 0.2s ease;
        }
        .navbar .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .navbar .nav-link.active {
            background-color: var(--gold);
            color: var(--primary-dark) !important;
        }
        .navbar-toggler {
            border: none;
            background-color: rgba(255,255,255,0.8);
        }

        /* Header / Logo area */
        .kia-header {
            background: linear-gradient(120deg, #fff 0%, #fef7e6 100%);
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
        }
        .kia-logo {
            width: 85px;
            height: 85px;
            object-fit: cover;
            border: 3px solid var(--gold);
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            transition: transform 0.2s;
        }
        .kia-logo:hover {
            transform: scale(1.02);
        }
        .kia-header h2 {
            color: var(--primary-orange);
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 0;
            font-size: 2rem;
        }
        .tagline {
            color: #5a626e;
            font-size: 0.95rem;
            font-weight: 500;
            border-left: 3px solid var(--gold);
            padding-left: 12px;
        }

        /* Enhanced Hero Slider - No Text */
        .hero-slider {
            position: relative;
            height: 85vh;
            min-height: 550px;
            overflow: hidden;
        }
        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.6s ease;
        }
        .slide.active {
            opacity: 1;
            visibility: visible;
        }
        .slide-img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.4);
            backdrop-filter: blur(3px);
            border: none;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 24px;
            color: white;
            transition: all 0.3s;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .slider-arrow:hover {
            background: var(--gold);
            transform: translateY(-50%) scale(1.05);
        }
        .prev-arrow { left: 20px; }
        .next-arrow { right: 20px; }
        .slider-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.6);
            cursor: pointer;
            transition: all 0.3s;
        }
        .dot.active {
            background: var(--gold);
            width: 30px;
            border-radius: 20px;
        }

        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-dark));
            color: white;
            padding: 60px 0;
            text-align: center;
        }
        .counter-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        .counter-item h3 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }

        /* Section styling */
        .section-card {
            background: white;
            border-radius: 28px;
            padding: 1.8rem 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 12px 30px rgba(0,0,0,0.05);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid rgba(212,175,55,0.2);
        }
        .section-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.1);
        }
        .section-title {
            color: var(--primary-orange);
            font-weight: 700;
            font-size: 2rem;
            position: relative;
            display: inline-block;
            margin-bottom: 1.2rem;
            letter-spacing: -0.3px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 70px;
            height: 4px;
            background: linear-gradient(90deg, var(--gold), var(--primary-orange));
            border-radius: 4px;
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Info Badges */
        .info-badge {
            background-color: #FFF3E0;
            padding: 12px 20px;
            border-radius: 60px;
            display: inline-block;
            margin-bottom: 1rem;
            font-weight: 600;
            color: var(--primary-orange);
        }
        .surname-grid span, .subgroup-badge {
            background: #f0f2f5;
            padding: 6px 16px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            margin: 0 6px 8px 0;
            display: inline-block;
            transition: all 0.2s;
            border-left: 3px solid var(--gold);
        }
        .surname-grid span:hover, .subgroup-badge:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
        }
        .status-card {
            background: #fef6e8;
            border-radius: 24px;
            padding: 1.2rem 1.5rem;
            margin-top: 0.8rem;
            border: 1px solid #ffddb0;
        }

        /* Team Cards */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 30px;
        }
        .team-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 30px -12px rgba(0,0,0,0.1);
            transition: all 0.25s ease;
            text-align: center;
            padding-bottom: 20px;
            border-bottom: 4px solid var(--gold);
        }
        .team-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
        }
        .team-img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }
        .team-card h3 {
            font-size: 1.3rem;
            margin: 15px 0 5px;
            font-family: 'Playfair Display', serif;
        }
        .team-card .role {
            color: var(--primary-orange);
            font-weight: 600;
            margin-bottom: 8px;
        }
        .team-card .contact {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.9rem;
        }

        /* Split Section - News & Carousel */
        .split-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            background: white;
            border-radius: 28px;
            padding: 40px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.05);
            border: 1px solid rgba(212,175,55,0.2);
        }
        .news-ticker {
            background: #f9f9f9;
            border-radius: 20px;
            padding: 20px;
            height: 400px;
            overflow-y: auto;
        }
        .news-item {
            padding: 15px;
            border-bottom: 1px solid #eee;
            transition: all 0.2s;
        }
        .news-item:hover {
            background: var(--gold-light);
            transform: translateX(5px);
        }
        .news-date {
            font-size: 0.75rem;
            color: var(--primary-orange);
            font-weight: 600;
        }
        .news-title {
            font-weight: 700;
            margin: 5px 0;
        }
        .carousel-container {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            height: 400px;
        }
        .carousel-slide {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }
        .carousel-slide.active {
            display: block;
        }
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            border: none;
            color: white;
            padding: 10px;
            cursor: pointer;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            transition: all 0.2s;
        }
        .carousel-btn:hover {
            background: var(--gold);
        }
        .carousel-prev { left: 10px; }
        .carousel-next { right: 10px; }

        /* Mission Vision Cards */
        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .mv-card {
            background: white;
            padding: 35px;
            border-radius: 24px;
            text-align: center;
            box-shadow: 0 12px 30px rgba(0,0,0,0.05);
            transition: all 0.2s;
            border: 1px solid rgba(212,175,55,0.2);
        }
        .mv-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 35px rgba(0,0,0,0.1);
        }
        .mv-card i {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 20px;
        }
        .mv-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        .gallery-item {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 1 / 0.8;
        }
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s;
        }
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            padding: 20px;
            color: white;
            opacity: 0;
            transition: all 0.3s;
        }
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }
        .lightbox.active {
            display: flex;
        }
        .lightbox-img {
            max-width: 90%;
            max-height: 80%;
            object-fit: contain;
        }
        .lightbox-close {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 40px;
            color: white;
            cursor: pointer;
        }
        .lightbox-prev, .lightbox-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 40px;
            color: white;
            cursor: pointer;
            padding: 20px;
        }
        .lightbox-prev { left: 20px; }
        .lightbox-next { right: 20px; }

        /* Footer */
        .footer-custom {
            background: #12181B;
            color: #ddd;
            border-top: 4px solid var(--gold);
        }
        .footer-custom a {
            color: var(--gold-light);
            text-decoration: none;
        }
        .social-icons i {
            font-size: 1.4rem;
            margin: 0 8px;
            transition: 0.2s;
            color: #bbb;
            cursor: pointer;
        }
        .social-icons i:hover {
            color: var(--gold);
            transform: scale(1.1);
        }

        /* Back to top */
        .back-to-top {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background: var(--primary-orange);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 99;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            cursor: pointer;
        }
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background: var(--gold);
            color: var(--primary-dark);
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 992px) {
            .team-grid, .counter-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .hero-slider { height: 400px; min-height: 400px; }
            .split-section, .mission-vision {
                grid-template-columns: 1fr;
            }
            .team-grid, .counter-grid {
                grid-template-columns: 1fr;
            }
            .kia-header h2 { font-size: 1.3rem; }
            .tagline { font-size: 0.7rem; }
            .slider-arrow { width: 36px; height: 36px; font-size: 18px; }
        }