 :root {
            --primary: #c80b0b;
            --primary-dark: #a30202;
            --secondary: #333333;
            --light: #ffffff;
            --gray: #f5f5f5;
            --dark-gray: #555555;
        }
        
        .start-0 {
            right: 0 !important;
        }
        
        .modal-content {
            width: unset !important;
        }
                
        .navbar-toggler:focus {
            text-decoration: none;
            outline: 0;
            box-shadow: none !important;
        }
        
        .navbar-toggler {
            border:none !important;
        }

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

        body {
            /*font-family: 'Roboto Condensed', sans-serif;*/
            font-weight: 500;
            color: var(--secondary);
            overflow-x: hidden;
            background-color: var(--light);
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            line-height: 1.2;
        }

        a {
            text-decoration: none !important;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary);
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 3px;
        }

        .section-title p {
            max-width: 700px;
            margin: 1.5rem auto 0;
            color: var(--dark-gray);
            font-weight: 500;
        }

        /* Navbar */
        .navbar {
            background: var(--light);
            padding: 0.5rem 0;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            border-bottom: 3px solid var(--primary);
            backdrop-filter: blur(5px);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .logo-icon:hover img {
            transform: scale(1.05);
        }

        .logo-icon i {
            font-size: 28px;
            color: var(--light);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text h1 {
            font-size: 1.2rem;
            font-weight: 900;
            color: var(--primary);
            margin: 0;
            letter-spacing: 1px;
        }

        /*.logo-text span {*/
        /*    font-size: 0.62rem;*/
        /*    color: var(--secondary);*/
        /*    letter-spacing: 1.5px;*/
        /*    font-weight: 600;*/
        /*    text-transform: uppercase;*/
        /*}*/

        /*.navbar-nav .nav-link {*/
        /*    color: var(--secondary);*/
        /*    font-weight: 600;*/
        /*    font-size: 1.05rem;*/
        /*    padding: 0.5rem 1rem;*/
        /*    position: relative;*/
        /*    transition: all 0.3s ease;*/
        /*}*/

        /*.navbar-nav .nav-link:hover,*/
        /*.navbar-nav .nav-link.active {*/
        /*    color: var(--primary);*/
        /*}*/

        /*.navbar-nav .nav-link::after {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    bottom: 0;*/
        /*    left: 50%;*/
        /*    transform: translateX(-50%);*/
        /*    width: 0;*/
        /*    height: 2px;*/
        /*    background-color: var(--primary);*/
        /*    transition: width 0.3s ease;*/
        /*}*/

        /*.navbar-nav .nav-link:hover::after {*/
        /*    width: 70%;*/
        /*}*/

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--light);
            border: none;
            width:260px;
            padding: 0.75rem 1.75rem;
            border-radius: 3px;
            font-weight: 600;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(230, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            letter-spacing: 0.5px;
        }
        
        .text-justify
         {
            text-align: justify !important;
         }

        .btn-primary-custom::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: 0.5s;
        }

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

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(230, 0, 0, 0.4);
            color:#fff;
        }

        /* Hero Carousel */
        .hero-carousel {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }
        
        .carousel-item {
            height: 100vh;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
        }
        
        .carousel-content {
            position: absolute;
            bottom: 30%;
            left: 0;
            right: 0;
            padding: 0 15%;
            color: white;
            z-index: 10;
            animation: fadeInUp 1s ease-out;
        }
        
        .carousel-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            color: var(--light);
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        
        .carousel-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            font-weight: 500;
        }
        
        .carousel-thumbnails {
            position: absolute;
            bottom: 50px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 20;
            padding: 10px;
        }
        
        .carousel-thumbnail {
            width: 80px;
            height: 60px;
            border-radius: 3px;
            overflow: hidden;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .carousel-thumbnail.active {
            opacity: 1;
            border-color: var(--primary);
            transform: scale(1.05);
        }
        
        .carousel-thumbnail:hover {
            opacity: 1;
        }
        
        .carousel-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .btn-outline-light-custom {
            background-color: transparent;
            color: var(--light);
            border: 2px solid var(--light);
            width:260px;
            padding: 0.75rem 1.75rem;
            border-radius: 3px;
            font-weight: 600;
            transition: all 0.4s ease;
            letter-spacing: 0.5px;
        }
        
        .btn-outline-light2-custom {
            background-color: transparent;
            color: var(--light);
            border: 2px solid var(--light);
            padding: 0.75rem 1.75rem;
            border-radius: 3px;
            font-weight: 600;
            transition: all 0.4s ease;
            letter-spacing: 0.5px;
        }

        .btn-outline-light-custom:hover {
            background-color: var(--light);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,255,255,0.3);
        }
        
        .btn-outline-light2-custom:hover {
            background-color: var(--light);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255,255,255,0.3);
        }

        /* About Section */
        .about {
            padding: 5rem 0;
            background-color: var(--light);
        }

        .about-image {
            border-radius: 3px;
            overflow: hidden;
            position: relative;
        }

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

        .feature {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            border-radius: 3px;
            transition: all 0.3s ease;
            margin-bottom: 1rem;
            background-color: var(--gray);
        }

        .feature:hover {
            background: rgba(230, 0, 0, 0.05);
            transform: translateX(5px);
        }

        .feature i {
            color: var(--primary);
            font-size: 1.5rem;
            margin-top: 5px;
            min-width: 30px;
        }

        .feature-content h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--secondary);
            font-weight: 700;
        }

        /* Services Section - Enhanced */
        .services {
            background-color: var(--gray);
            padding: 5rem 0;
        }

        .service-card {
            background-color: var(--light);
            border-radius: 3px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
            margin-bottom: 1.5rem;
            height: 100%;
            border: none;
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        /* Service Card Enhancements */
        .service-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 1.5rem;
        }
        
        
        /* WhatsApp Button Styling */
        .whatsapp-btn {
            background-color: #25D366;
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 3px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .whatsapp-btn:hover {
            background-color: #128C7E;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }
        
        .whatsapp-btn i {
            margin-right: 8px;
            font-size: 1.2rem;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .service-image {
            height: auto;
            overflow: hidden;
            position: relative;
            background: linear-gradient(45deg, #f5f5f5 25%, #e0e0e0 50%, #f5f5f5 75%);
            background-size: 400% 400%;
            animation: shimmer 1.5s infinite;
        }

        .service-image img {
            width: 100%;
            /*height: 100%;*/
            object-fit: cover;
            transition: transform 0.5s ease;
            opacity: 0;
            transform: scale(0.95);
            transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
        }

        .service-image img.loaded {
            opacity: 1;
            transform: scale(1);
            filter: blur(0);
        }

        .service-content {
            padding: 2rem;
            position: relative;
            z-index: 2;
            background: white;
        }

        .service-content h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--secondary);
            position: relative;
            padding-bottom: 0.5rem;
            font-weight: 800;
        }

        .service-content h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 3px;
        }

        .service-content p {
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            min-height: 100px;
            font-weight: 500;
        }

        .service-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #eee;
        }

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

        .stat-number {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--dark-gray);
            font-weight: 500;
        }

        /* Catalog Section */
        .catalog {
            padding: 5rem 0;
            background-color: #fff;
        }

        .filter-btn {
            background-color: transparent;
            border: 2px solid #ddd;
            color: var(--dark-gray);
            padding: 0.5rem 1.5rem;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1rem;
            min-width: 120px;
            margin: 0.5rem;
        }

        .filter-btn.active, .filter-btn:hover {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--light);
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(230, 0, 0, 0.1);
        }

        .vehicle-card {
            background-color: var(--light);
            border-radius: 3px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            border: 1px solid #eee;
            /*margin-bottom: 2rem;*/
            height: 100%;
        }

        .vehicle-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .vehicle-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 3px;
            font-weight: 700;
            font-size: 0.85rem;
            z-index: 2;
        }

        .vehicle-image {
            height: 220px;
            overflow: hidden;
            position: relative;
            /*background: linear-gradient(45deg, #f5f5f5 25%, #e0e0e0 50%, #f5f5f5 75%);*/
            background-size: 400% 400%;
            /*animation: shimmer 1.5s infinite;*/
        }

        .vehicle-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            opacity: 0;
            transform: scale(0.95);
            transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
        }

        .vehicle-image img.loaded {
            opacity: 1;
            transform: scale(1);
            filter: blur(0);
        }

        .vehicle-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            padding: 10px;
            color: white;
        }

        .vehicle-info {
            padding: 1.2rem;
        }

        .spec {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #f5f5f5;
            padding: 0.75rem;
            border-radius: 3px;
            margin-bottom: 0.75rem;
        }

        .spec i {
            color: var(--primary);
            font-size: 1.2rem;
            min-width: 24px;
            text-align: center;
        }

        .spec-content {
            display: flex;
            flex-direction: column;
        }

        .spec-title {
            font-size: 0.8rem;
            color: #777;
            font-weight: 500;
        }

        .spec-value {
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--secondary);
        }

        .vehicle-actions {
            display: flex;
            gap: 0.75rem;
            margin-top: 1rem;
        }

        .detail-button {
            flex: 1;
            text-align: center;
            padding: 0.75rem;
            background: var(--light);
            border: 2px solid var(--primary);
            color: var(--primary);
            border-radius: 3px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .detail-button:hover {
            background: var(--primary);
            color: var(--light);
            transform: translateY(-2px);
        }

        .testdrive-button {
            flex: 1;
            text-align: center;
            padding: 0.75rem;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--light);
            border: none;
            border-radius: 3px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .testdrive-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(230, 0, 0, 0.2);
        }

        /* Contact Section */
        .contact {
            padding: 5rem 0;
            background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
            color: var(--secondary);
            position: relative;
            overflow: hidden;
            border-radius: 3px;
        }
        
        .contact-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            opacity: 0.15;
            background-attachment: fixed;
        }
        
        .contact-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .contact-header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            margin-bottom: 1rem;
        }
        
        .contact-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 3px;
        }
        
        .contact-header p {
            max-width: 700px;
            margin: 1.5rem auto 0;
            color: var(--dark-gray);
            font-weight: 500;
        }
        
        /* Main Address - Full Width */
        .main-address {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 3px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
            border: 1px solid #eee;
            margin-bottom: 3rem;
        }
        
        .main-address h3 {
            color: var(--primary);
            margin-bottom: 1.5rem;
            border-bottom: 2px solid var(--primary);
            padding-bottom: 0.5rem;
            display: inline-block;
        }
        
        .address-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        
        .contact-details {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 1rem;
            border-radius: 3px;
            transition: all 0.3s ease;
            background: rgba(200, 11, 11, 0.05);
        }
        
        .contact-item i {
            font-size: 1.4rem;
            color: var(--primary);
            min-width: 30px;
            margin-top: 5px;
        }
        
        .contact-text h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--secondary);
        }
        
        .contact-text p {
            margin: 0;
            color: var(--dark-gray);
        }
        
        .map-container {
            border-radius: 3px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 100%;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Branch Offices - Minimalist Design */
        .branch-offices {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .branch-card {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 3px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 2;
            border: 1px solid #eee;
            transition: all 0.3s ease;
        }
        
        .branch-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .branch-card h4 {
            text-align: center;
            color: var(--primary);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .branch-card h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background-color: var(--primary);
            border-radius: 3px;
        }
        
        .branch-info {
            margin-bottom: 1.5rem;
        }
        
        .branch-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #eee;
        }
        
        .branch-item i {
            color: var(--primary);
            min-width: 20px;
            font-size: 0.9rem;
        }
        
        .branch-item-content {
            flex: 1;
        }
        
        .branch-item-content p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--dark-gray);
        }
        
        .branch-map {
            border-radius: 3px;
            overflow: hidden;
            height: 150px;
            margin-top: 1rem;
        }
        
        .branch-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .address-grid {
                grid-template-columns: 1fr;
            }
            
            .map-container {
                height: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .branch-offices {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .contact-header h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .main-address {
                padding: 1.5rem;
            }
            
            .contact-item {
                padding: 0.8rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .contact-header h2 {
                font-size: 1.8rem;
            }
        }
        /* CTA Section - Enhanced */
        .cta-section {
            padding: 2.5rem 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--light);
            text-align: center;
            position: relative;
            overflow: hidden;
            /*border-radius: 3px;*/
            width: 100%;
            margin: 3rem 0;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../images/homepage-banner-1366x573px-06122024-053201.png') no-repeat center center/cover;
            opacity: 0.2;
        }

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

        .cta-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1.2rem;
            font-weight: 800;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            animation: pulse 2s infinite;
        }

        .cta-content p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
            font-weight: 500;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .btn-cta-primary {
            background: var(--light);
            color: var(--primary);
            border: none;
            padding: 0.85rem 2rem;
            border-radius: 3px;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--primary-dark);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .btn-cta-primary:hover::before {
            width: 100%;
        }

        .btn-cta-primary:hover {
            color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        .btn-cta-secondary {
            background: transparent;
            color: var(--light);
            border: 2px solid var(--light);
            padding: 0.85rem 2rem;
            border-radius: 3px;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .btn-cta-secondary:hover {
            background: var(--light);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
            color: #666;
            padding: 4rem 1rem 1rem;
            border-top: 3px solid var(--primary);
        }

        .footer-column {
            margin-bottom: 2rem;
        }

        .footer-column h4 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
            font-weight: 800;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 3px;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #ddd;
            width: 42px;
            height: 42px;
            border-radius: 3px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            color: var(--primary);
        }
        

        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            transform: translateY(-3px);
            color: white !important;
        }

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

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: #666;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
        }

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

        .footer-links a i {
            width: 20px;
            color: var(--primary);
        }

        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #ddd;
            font-size: 0.9rem;
            margin-top: 2rem;
            color: #666;
            font-weight: 500;
        }

    /* Artikel Section */
    .Artikel {
        background-color: var(--gray);
        padding: 5rem 0;
    }
    
    .Artikel-header {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
    }
    
    .Artikel-header h2 {
        font-size: 2.5rem;
        color: var(--secondary);
        position: relative;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .Artikel-header h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 4px;
        background-color: var(--primary);
        border-radius: 3px;
    }
    
    .Artikel-header p {
        max-width: 700px;
        margin: 1.5rem auto 0;
        color: var(--dark-gray);
        font-weight: 500;
    }
    
    .Artikel-container {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 30px;
        /* Perbaikan di sini */
        align-items: stretch; 
    }
    
    .Artikel-posts {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        /* Perbaikan di sini: Membuat semua kartu di dalamnya memiliki tinggi yang sama */
        align-items: stretch;
    }
    
    .Artikel-card {
        background: var(--light);
        border-radius: 3px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid #eee;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .Artikel-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .Artikel-image {
        height: 220px;
        overflow: hidden;
        position: relative;
        /*background: linear-gradient(45deg, #f5f5f5 25%, #e0e0e0 50%, #f5f5f5 75%);*/
        background-size: 400% 400%;
        /*animation: shimmer 1.5s infinite;*/
    }
    
    .Artikel-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        opacity: 0;
        transform: scale(0.95);
        transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
    }
    
    .Artikel-image img.loaded {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
    
    .Artikel-details {
        padding: 1.5rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .Artikel-date {
        display: inline-block;
        background: rgba(200, 11, 11, 0.1);
        color: var(--primary);
        font-size: 0.85rem;
        padding: 5px 12px;
        border-radius: 3px;
        margin-bottom: 15px;
        font-weight: 600;
    }
    
    .Artikel-title {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: var(--secondary);
        line-height: 1.4;
    }
    
    .Artikel-excerpt {
        color: var(--dark-gray);
        font-size: 0.95rem;
        margin-bottom: 15px;
        line-height: 1.6;
        flex: 1;
    }
    
    .Artikel-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 15px;
        border-top: 1px solid #eee;
        margin-top: auto;
    }
    
    .Artikel-views {
        display: flex;
        align-items: center;
        color: var(--dark-gray);
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .Artikel-views i {
        margin-right: 5px;
        color: var(--primary);
    }
    
    .Artikel-share {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .share-btn {
        width: 32px;
        height: 32px;
        border-radius: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        background: rgba(200, 11, 11, 0.1);
        transition: all 0.3s ease;
    }
    
    .share-btn:hover {
        background: var(--primary);
        color: white;
        transform: translateY(-3px);
    }
    
    .read-more {
        display: inline-flex;
        align-items: center;
        color: var(--primary);
        font-weight: 600;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        margin-top: 10px;
    }
    
    .read-more i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .read-more:hover {
        color: var(--secondary);
    }
    
    .read-more:hover i {
        transform: translateX(4px);
    }
    
    /* Recent Posts Sidebar */
    .recent-posts {
        background: var(--light);
        border-radius: 3px;
        padding: 1.5rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }
    
    .sidebar-title {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 2px solid var(--primary);
        position: relative;
        color: var(--secondary);
    }
    
    .sidebar-title::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 50px;
        height: 2px;
        background: var(--primary);
    }
    
    .recent-post {
        display: flex;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e9ecef;
        transition: all 0.3s ease;
    }
    
    .recent-post:hover {
        transform: translateY(-5px);
    }
    
    .recent-post:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    
    .recent-post-img {
        width: 80px;
        height: 80px;
        border-radius: 3px;
        overflow: hidden;
        flex-shrink: 0;
        margin-right: 15px;
        position: relative;
        /*background: linear-gradient(45deg, #f5f5f5 25%, #e0e0e0 50%, #f5f5f5 75%);*/
        background-size: 400% 400%;
        /*animation: shimmer 1.5s infinite;*/
    }
    
    .recent-post-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        opacity: 0;
        transform: scale(0.95);
        transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
    }
    
    .recent-post-img img.loaded {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
    
    .recent-post-content {
        flex: 1;
    }
    
    .recent-post-title {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--secondary);
        line-height: 1.4;
    }
    
    .recent-post-date {
        font-size: 0.85rem;
        color: var(--dark-gray);
        display: flex;
        align-items: center;
    }
    
    .recent-post-date i {
        color: var(--primary);
        margin-right: 6px;
        font-size: 0.9rem;
    }
    
    .view-all-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--primary);
        color: white;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border-radius: 3px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(200, 11, 11, 0.2);
    }
    
    .view-all-btn:hover {
        background: #a30202;
        transform: translateY(-3px);
        color: white;
        box-shadow: 0 8px 20px rgba(200, 11, 11, 0.3);
    }
    
    .view-all-btn i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .view-all-btn:hover i {
        transform: translateX(4px);
    }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            }
            50% {
                transform: scale(1.02);
                text-shadow: 0 4px 10px rgba(0,0,0,0.3);
            }
            100% {
                transform: scale(1);
                text-shadow: 0 2px 4px rgba(0,0,0,0.2);
            }
        }

        /* Lazy Load Effect */
        .lazy-img {
            opacity: 0;
            transform: scale(0.95);
            transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
        }

        .lazy-img.loaded {
            opacity: 1;
            transform: scale(1);
            filter: blur(0);
        }
        
        /* Shimmer Effect */
        @keyframes shimmer {
            0% {
                background-position: -200% 0;
            }
            100% {
                background-position: 200% 0;
            }
        }
        
        /* Loading Spinner */
        .loading-spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            border: 3px solid rgba(200, 11, 11, 0.2);
            border-top: 3px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            z-index: 2;
        }
        
        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        .image-container {
            position: relative;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .carousel-content h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .carousel-thumbnails {
                display: none;
            }
            
            .Artikel-posts {
                grid-template-columns: 1fr;
            }
            
            .Artikel-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .carousel-content h1 {
                font-size: 2.3rem;
            }
            
            .carousel-content p {
                font-size: 1rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .vehicle-actions {
                flex-direction: column;
            }
            
            .service-image {
                height: auto;
            }
            
            .cta-content h2 {
                font-size: 1.8rem;
            }
            
            .btn-cta-primary, .btn-cta-secondary {
                padding: 0.75rem 1.5rem;
                font-size: 0.9rem;
            }

            .recent-post {
                flex-direction: column;
            }
            
            .recent-post-img {
                width: 100%;
                height: 150px;
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        @media (max-width: 576px) {
            .logo-text h1 {
                font-size: 1.2rem;
            }
            
            .carousel-content h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-cta-primary, .btn-cta-secondary {
                width: 100%;
                max-width: 280px;
                margin-bottom: 0.5rem;
            }
            
            .Artikel-share {
                display: none;
            }
        }
 
    /* Promo Section Styles */
    .promo {
        background-color: #f8f9fa;
        position: relative;
    }
    
    .promo-slider-container {
        /*max-width: 1200px;*/
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .promo-slider {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 20px 10px;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
    }
    
    .promo-slider::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }
    
    .promo-item {
        flex: 0 0 calc(33.333% - 15px);
        scroll-snap-align: start;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        position: relative;
    }
    
    .promo-image {
        position: relative;
        width: 100%;
        /* height: 200px; */
        overflow: hidden;
    }
    
    .promo-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .promo-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
        padding: 20px;
    }
    
    .promo-item:hover .promo-overlay {
        opacity: 1;
    }
    
    .promo-item:hover img {
        transform: scale(1.05);
    }
    
    .promo-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .promo-info {
        background: white;
    }
    
    .promo-info h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
        color: var(--secondary);
    }
    
    .promo-info p {
        font-size: 0.9rem;
        color: var(--dark-gray);
        margin: 0;
    }
    
    .promo-nav {
        width: 40px;
        height: 40px;
        border-radius: 3px;
        background: white;
        border: none;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        color: var(--primary);
        font-size: 1rem;
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .promo-nav:hover {
        background: var(--primary);
        color: white;
        transform: scale(1.1);
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
        .promo-item {
            flex: 0 0 calc(50% - 10px);
        }
    }
    
    @media (max-width: 768px) {
        .promo-item {
            flex: 0 0 calc(50% - 10px);
        }
        
        .promo-nav {
            width: 35px;
            height: 35px;
        }
        /*
        .promo-image {
            height: 180px;
        }
        */
    }
    
    @media (max-width: 576px) {
        .promo-item {
            flex: 0 0 85%;
        }
        
        .promo-nav {
            display: none;
        }
    }
    .slider {
    touch-action: pan-y; /* Izinkan scroll vertikal */
    user-select: none; /* Cegah seleksi teks saat drag */
}
 
        /* Existing styles remain unchanged */
        
        /* New Gallery Section Styles */
        .gallery {
            padding: 5rem 0;
            background-color: #f8f9fa;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            border-radius: 3px;
            overflow: hidden;
            position: relative;
            height: 250px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            cursor: pointer;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            color: white;
            padding: 15px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-caption {
            opacity: 1;
        }
        
        .gallery-caption h5 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .gallery-caption p {
            font-size: 0.9rem;
            margin: 0;
            opacity: 0.9;
        }
        
        .gallery-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        
        .gallery-btn {
            background-color: transparent;
            border: 2px solid #ddd;
            color: var(--dark-gray);
            padding: 0.5rem 1.5rem;
            border-radius: 3px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 1rem;
            min-width: 120px;
            margin: 0.5rem;
        }
        
        .gallery-btn.active, .gallery-btn:hover {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--light);
            border-color: var(--primary);
            box-shadow: 0 5px 15px rgba(230, 0, 0, 0.1);
        }
        
        .gallery-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgb(47 47 47 / 85%);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1050;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .gallery-modal.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            /*max-width: 90%;*/
            /*max-height: 90%;*/
            position: relative;
        }
        
        .modal-content img {
            max-width: 100%;
            max-height: 100%; 
            border-radius: 3px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            display: block;
            margin: auto;
        }
        
        .modal-caption {
            color: white;
            text-align: center;
            padding: 15px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .modal-caption h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .modal-caption p {
            font-size: 1rem;
            opacity: 0.8;
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 30px;
            color: white;
            font-size: 2.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
        }
        
        .close-modal:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }
        
        .nav-modal {
            position: absolute;
            top: 45%;
            transform: translateY(-50%);
            color: white;
            font-size: 4rem;
            cursor: pointer;
            z-index: 10;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .nav-modal:hover {
            opacity: 1;
        }
        
        .prev-modal {
            left: 440px;
        }
        
        .next-modal {
            right: 440px;
        }
        
        /* Responsive Gallery */
        @media (max-width: 1441px) {
            .prev-modal {
            left: 370px;
            }
            
            .next-modal {
                right: 370px;
            }
        }
        
        @media (max-width: 1310px) {
            .prev-modal {
            left: 320px;
            }
            
            .next-modal {
                right: 320px;
            }
        }
        
        @media (max-width: 1153px) {
            .prev-modal {
            left: 230px;
            }
            
            .next-modal {
                right: 230px;
            }
        }
        
        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            }
            
            .gallery-item {
                height: 200px;
            }
        }
        
        @media (max-width: 576px) {
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
                gap: 15px;
            }
            
            .gallery-item {
                height: 180px;
            }
        }
 
    /* Navbar Styles */
    .navbar {
        background: rgba(255, 255, 255, 0.98) !important;
        padding: 0.5rem 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border-bottom: 3px solid var(--primary);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.95) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 5px 0;
    }

    .logo-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        /*background: white;*/
        padding: 5px;
        border-radius: 5px;
        /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);*/
        /*margin-left:20px;*/
    }

    .logo-icon img {
        width: 50px;
        height: auto;
        transition: transform 0.3s ease;
    }

    .logo-text {
        display: flex;
        flex-direction: column;
    }

    .logo-text h1 {
        font-size: 1rem;
        font-weight: 900;
        color: var(--primary);
        margin: 0;
        letter-spacing: 0.5px;
        line-height: 1.2;
    }

    .logo-text span {
        font-size: 0.61rem;
        color: var(--secondary);
        letter-spacing: 1px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .navbar-nav {
        /*align-items: center;*/
    }

    .navbar-nav .nav-link {
        color: var(--secondary);
        font-weight: 600;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        position: relative;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary);
    }

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

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 70%;
    }

    /* Dropdown Menu Styles */
    .dropdown-menu {
        border: none;
        border-radius: 5px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        margin-top: 5px;
        padding: 0.5rem 0;
    }

    .dropdown-item {
        padding: 0.5rem 1.5rem;
        font-weight: 500;
        color: var(--secondary);
        transition: all 0.2s ease;
    }

    .dropdown-item:hover {
        background-color: rgba(200, 11, 11, 0.05);
        color: var(--primary);
    }
 

 
    /* Second Logo Styles */
    .second-logo {
        /*margin-left: 30px;*/
        padding-left: 20px;
        border-left: 1px solid #eee;
    }

    .second-logo img {
        width: 120px;
        height: auto;
        transition: transform 0.3s ease;
    }

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

     

    @media (max-width: 991.98px) {
        .navbar-collapse {
            background: rgba(255, 255, 255, 0.98);
            padding: 1rem;
            margin-top: 10px;
            border-radius: 5px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .second-logo {
            margin-left: 0;
            padding-left: 0;
            border-left: none;
            margin-top: 15px;
            padding-top: 15px;
            border-top: 1px solid #eee;
            text-align: center;
            width: 100%;
        }
        
        .dropdown-menu {
            box-shadow: none;
            margin-top: 0;
        }
    }
    

/* Container untuk mengelompokkan ikon dan teks */
.floating-container {
    position: fixed;
    z-index: 1050;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    flex-direction: row-reverse; /* Membalik urutan elemen untuk menempatkan teks di kiri ikon */
}

/* Penyesuaian posisi container */
.whatsapp-container {
    bottom: 35px;
    right: 10px;
}

.fb-container {
    bottom: 80px;
    right: 10px;
}

.ig-container {
    bottom: 125px;
    right: 10px;
}

.tiktok-container {
    bottom: 170px;
    right: 10px;
}

/* Gaya untuk teks */
.help-text, .fb-text, .ig-text, .tiktok-text {
    font-size: 13px;
    padding: 6px 12px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    margin-right: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    position: relative;
    overflow: hidden;
    border: 1px solid;
}

.help-text {
    color: #25D366;
    border-color: #25D366;
}

.fb-text {
    color: #0866ff;
    border-color: #0866ff;
}

.ig-text {
    color: #E1306C;
    border-color: #E1306C;
}

.tiktok-text {
    color: #000000;
    border-color: #000000;
}

/* Gaya untuk ikon */
.floating-whatsapp, .floating-fb, .floating-ig, .floating-tiktok {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    transition: transform 0.3s ease;
}

/* Gambar ikon */
.floating-whatsapp img,
.floating-fb img,
.floating-ig img,
.floating-tiktok img {
    width: 40px;
    height: 40px;
    z-index: 2;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

/* Efek hover pada ikon: teks akan muncul */
/* Menggunakan sibling combinator (+) atau (~) untuk menargetkan teks yang berada setelah ikon */
.floating-whatsapp:hover + .help-text,
.floating-fb:hover + .fb-text,
.floating-ig:hover + .ig-text,
.floating-tiktok:hover + .tiktok-text {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

/* Efek hover pada teks */
.help-text:hover {
    background-color: #25D366;
    color: white;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.fb-text:hover {
    background-color: #0866ff;
    color: white;
    box-shadow: 0 6px 15px rgba(8, 102, 255, 0.3);
}

.ig-text:hover {
    background-color: #E1306C;
    color: white;
    box-shadow: 0 6px 15px rgba(225, 48, 108, 0.3);
}

.tiktok-text:hover {
    background-color: #000000;
    color: white;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Efek hover pada ikon: memperbesar ikon */
.floating-whatsapp:hover,
.floating-fb:hover,
.floating-ig:hover,
.floating-tiktok:hover {
    transform: scale(1.25);
}

/* Animasi rotasi garis */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
    
        
        /* Modal Styles */
        .modal-content {
            border-radius: 3px;
            border: none;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }
        
        .modal-header {
            border-radius: 3px;
            background: #128C7E;
            color: white;
            padding: 15px 20px;
            border-bottom: 2px solid #0C6B5F;
        }
        
        .modal-title {
            font-weight: 600;
            font-size: 18px;
            letter-spacing: 0.3px;
        }
        
        .modal-body {
            padding: 25px;
        }
        
        .form-label {
            font-weight: 600;
            font-size: 14px;
            color: #444;
            margin-bottom: 8px;
        }
        
        .form-control {
            border-radius: 0; /* Sudut tegas */
            border: 1px solid #ddd;
            padding: 10px 12px;
            font-size: 14px;
            transition: all 0.2s;
        }
        
        .form-control:focus {
            border-color: #25D366;
            box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
        }
        
        .input-group-text {
            background: #f8f9fa;
            border-radius: 0; /* Sudut tegas */
            border: 1px solid #ddd;
            color: #128C7E;
            font-weight: 500;
        }
        
        #startChatBtn {
            color: #fff;
            background: #25D366;
            border: none;
            border-radius: 0; /* Sudut tegas */
            padding: 10px;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.3px;
            transition: all 0.3s;
            margin-top: 15px;
        }
        
        #startChatBtn:hover {
            background: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
        }
        
        .text-muted {
            font-size: 12px;
            margin-top: 15px;
            text-align: center;
            color: #777 !important;
        }
        
        .btn-close {
            filter: invert(1);
            opacity: 0.8;
            transition: all 0.2s;
        }
        
        .btn-close:hover {
            opacity: 1;
            transform: rotate(90deg);
        }
        
        /* Responsiveness */
        @media (max-width: 576px) {
            .modal-dialog {
                max-width: 95% !important;
                margin: 0 auto 20px auto !important;
                left: 0;
                right: 0;
            }
        }
        
        /* Style khusus untuk tombol login di navbar */
        .login-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 3px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: var(--light);
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(200, 11, 11, 0.3);
            margin-left: 15px;
        }
        
        .login-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(200, 11, 11, 0.4);
            color: var(--light);
        }
        @media (max-width: 991.98px) {
            .navbar-nav .nav-link::after {
                left:40%;
            }
            .second-logo {
                /* ... existing styles ... */
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
            
            .login-button {
                margin-left: 0;
                order: 2; /* Pindahkan tombol ke posisi kedua */
            }
        }
        
        /* Informational Section */
        .feature-box {
            background: white;
            border-radius: 0; /* Sudut tegas */
            padding: 20px;
            margin-bottom: 25px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            border-left: 3px solid #25D366;
            transition: transform 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
        }
        
        .feature-box h3 {
            color: #128C7E;
            font-size: 20px;
            margin-bottom: 12px;
        }
        
        .feature-box i {
            font-size: 24px;
            color: #25D366;
            margin-bottom: 15px;
        }
        
             /* Breadcrumb */
        .breadcrumb-section {
            background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
            padding: 1.5rem 0;
            border-bottom: 1px solid #ddd;
            margin-top: 65px;
        }
        
        .breadcrumb {
            margin-bottom: 0;
            font-size: 0.9rem;
        }
        
        .breadcrumb-item a {
            color: var(--secondary);
            transition: color 0.3s ease;
        }
        
        .breadcrumb-item a:hover {
            color: var(--primary);
        }
        
        .breadcrumb-item.active {
            color: var(--primary);
            font-weight: 600;
        }
        
        .breadcrumb-item+.breadcrumb-item::before {
            content: ">";
            color: var(--dark-gray);
        }
        