     :root {
            --sunset-orange: #F1661C;
            --beige-green: #C4BD86;
            --dark-brown: #513a2a;
            --light-brown: #8b6f47;
            --luxury-black: #1a1a1a;
            --off-white: #fefefe;
            --accent-gold: #f4e4bc;
            --primary-gold: #d4af37;
        }

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

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.7;
            color: var(--dark-brown);
            background-color: #fafafa;
        }

        /* Navigation Styles
        .navbar-custom {
            background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0,0,0,0.08);
        }

        .navbar-brand img {
            height: 50px;
            width: auto;
        }

        .navbar-nav .nav-link {
            color: var(--dark-brown) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: var(--sunset-orange) !important;
        }

        .navbar-nav .nav-link.active {
            color: var(--sunset-orange) !important;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--sunset-orange) 0%, #e55a15 100%);
            border: none;
            color: white;
            padding: 12px 28px;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(241, 102, 28, 0.3);
            color: white;
            text-decoration: none;
        } */

        /* Blog Header */
        .blog-header {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('images/simba-wa-3.webp');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: rgb(247, 9, 9);
            text-align: center;
        }

        .blog-header h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: white;
        }

        .blog-meta {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .blog-meta i {
            margin-right: 8px;
            color: var(--sunset-orange);
        }

        /* Blog Content */
        .blog-content {
            background: white;
            padding: 60px 0;
        }

        .blog-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-main {
            background: white;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }

        .blog-main h2 {
            color: var(--dark-brown);
            font-weight: 700;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 15px;
        }

        .blog-main h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--sunset-orange), var(--primary-gold));
            border-radius: 2px;
        }

        .blog-main h3 {
            color: var(--dark-brown);
            font-weight: 600;
            font-size: 1.5rem;
            margin: 2.5rem 0 1rem 0;
        }

        .blog-main p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--light-brown);
        }

        .blog-main .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--dark-brown);
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        /* Quote Style */
        .quote-box {
            background: linear-gradient(135deg, var(--accent-gold) 0%, #f0e6d2 100%);
            padding: 2rem;
            border-radius: 12px;
            border-left: 5px solid var(--sunset-orange);
            margin: 2rem 0;
            font-style: italic;
            font-size: 1.2rem;
            color: var(--dark-brown);
        }

        /* Sidebar */
        .blog-sidebar {
            padding-left: 2rem;
        }

        .sidebar-widget {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }

        .sidebar-widget h4 {
            color: var(--dark-brown);
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .stat-item {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }

        .stat-item:last-child {
            border-bottom: none;
        }

        .stat-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--sunset-orange), var(--primary-gold));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 15px;
            font-size: 16px;
        }

        .stat-text {
            flex: 1;
        }

        .stat-text .number {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--dark-brown);
            display: block;
        }

        .stat-text .label {
            font-size: 0.9rem;
            color: var(--light-brown);
        }

        /* Service Links */
        .service-links {
            list-style: none;
            padding: 0;
        }

        .service-links li {
            margin-bottom: 12px;
        }

        .service-links a {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            background: #f8f9fa;
            border-radius: 8px;
            text-decoration: none;
            color: var(--dark-brown);
            transition: all 0.3s ease;
        }

        .service-links a:hover {
            background: var(--sunset-orange);
            color: white;
            transform: translateX(5px);
        }

        .service-links a i {
            margin-right: 10px;
            width: 20px;
            font-size: 14px;
        }

        /* Image Gallery */
        .blog-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: scale(1.05);
        }

        .gallery-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        /* CTA Section */
        .blog-cta {
            background: linear-gradient(135deg, var(--dark-brown) 0%, var(--luxury-black) 100%);
            color: white;
            padding: 3rem;
            border-radius: 15px;
            text-align: center;
            margin-top: 3rem;
        }

        .blog-cta h3 {
            color: white;
            margin-bottom: 1rem;
            font-size: 2rem;
        }

        .blog-cta p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

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

    

        .btn-email {
            border: 2px solid var(--sunset-orange);
            color: var(--sunset-orange);
            background: transparent;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-email:hover {
            background: var(--sunset-orange);
            color: white;
            transform: translateY(-2px);
            text-decoration: none;
        }

      
        /* Responsive Design */
        @media (max-width: 768px) {
            .blog-main {
                padding: 2rem;
            }
            
            .blog-sidebar {
                padding-left: 0;
                margin-top: 2rem;
            }
            
            .sidebar-widget {
                padding: 1.5rem;
            }
            
            .blog-gallery {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-whatsapp,
            .btn-email {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .blog-header {
                padding: 100px 0 60px;
            }
            
            .blog-main h2 {
                font-size: 1.8rem;
            }
            
            .blog-main p {
                font-size: 1rem;
            }
            
            .blog-cta {
                padding: 2rem;
            }
            
            .blog-cta h3 {
                font-size: 1.6rem;
            }
        }