

  h1, .hero-main-title {
            font-size: 3.5rem;
            font-weight: 700;
            color: #ffffff !important;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out 0.4s forwards;
            position: relative;
            z-index: 12;
            opacity: 0;
            transform: translateY(30px);
            text-align: center;
        }

        /* H2 - Section Titles */  
        h2, .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #304658;
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }

        /* H3 - Feature Titles */
        h3, .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #304658;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        /* Hero Subtitle */
        .hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9) !important;
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-out 0.6s forwards;
            position: relative;
            z-index: 12;
        }

        /* Section Text */
        .section-text, .feature-description {
            color: #666;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 1rem;
        }

        /* ==============================================
           HERO SECTION WITH GRID BACKGROUND
           ============================================== */
        
        #rec_installation_hero, #rec_installation_cta {
            position: relative;
            overflow: hidden;
        }

        /* Grid Background */
        .hero-grid-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            z-index: 1;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* Hero Floating Elements */
        .hero-floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, rgba(241,196,15,0.1), rgba(241,196,15,0.05));
        }

        .hero-shape-1 {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation: float 8s ease-in-out infinite;
        }

        .hero-shape-2 {
            width: 60px;
            height: 60px;
            top: 60%;
            right: 15%;
            animation: float 6s ease-in-out infinite 2s;
        }

        .hero-shape-3 {
            width: 80px;
            height: 80px;
            bottom: 30%;
            left: 20%;
            animation: float 7s ease-in-out infinite 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            33% { transform: translateY(-15px) rotate(120deg); }
            66% { transform: translateY(8px) rotate(240deg); }
        }

        /* ==============================================
           SERVICES SECTION
           ============================================== */
        
        .services-content {
            padding-right: 40px;
        }
        
        .services-list {
            margin-top: 40px;
        }
        
        .service-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 12px;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
        }
        
        .service-item.t-animate-start {
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .service-item:hover {
            background: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .service-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #f1c40f, #e1b000);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
        }
        
        .service-text {
            color: #304658;
            font-weight: 600;
            font-size: 1.1rem;
            line-height: 1.4;
        }
        
        .installation-image {
            height: 500px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        /* ==============================================
           FEATURES SECTION
           ============================================== */
        
         .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            justify-content: center;
            justify-items: center;
              padding: 0 20px;
        }
        
        
        .feature-card {
            background: #ffffff;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #f1c40f, #e1b000);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .feature-card:hover::before {
            transform: translateX(0);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(241,196,15,0.1), rgba(241,196,15,0.05));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.3s ease;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        /* ==============================================
           GALLERY SECTION
           ============================================== */
        
        .gallery-toggle-btn {
            background: linear-gradient(135deg, #f1c40f 0%, #e1b000 100%);
            color: #304658;
            border: none;
            border-radius: 50px;
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 12px;
        }
        
        .gallery-toggle-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(241, 196, 15, 0.3);
        }
        
        .btn-arrow {
            transition: transform 0.3s ease;
        }
        
        .gallery-toggle-btn.active .btn-arrow {
            transform: rotate(180deg);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .gallery-item {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }

        /* ==============================================
           CTA BUTTON
           ============================================== */
        
        .cta-button {
            background: linear-gradient(135deg, #f1c40f 0%, #e1b000 100%);
            color: #304658;
            border-radius: 30px;
            padding: 18px 40px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(241, 196, 15, 0.3);
            color: #304658;
            text-decoration: none;
        }

        /* ==============================================
           ANIMATIONS
           ============================================== */
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ==============================================
           MOBILE RESPONSIVE STYLES
           ============================================== */
        
        /* Tablet styles */
        @media screen and (max-width: 1200px) {
            h1, .hero-main-title {
                font-size: 3rem;
            }
            
            h2, .section-title {
                font-size: 2.2rem;
            }
            
            h3, .feature-title {
                font-size: 1.3rem;
            }
            
            .services-content {
                padding-right: 20px;
            }
            
            .features-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 30px;
            }
        }
        
        /* Mobile styles */
        @media screen and (max-width: 768px) {
            h1, .hero-main-title {
                font-size: 2.2rem !important;
                margin-bottom: 20px;
            }
            
            h2, .section-title {
                font-size: 1.8rem !important;
                text-align: center;
            }
            
            h3, .feature-title {
                font-size: 1.2rem !important;
            }
            
            .hero-subtitle {
                font-size: 1.1rem !important;
                margin-bottom: 40px;
            }
            
            .t-row {
                flex-direction: column;
            }
            
            .t-col {
                margin-bottom: 40px;
            }
            
            .services-content {
                padding-right: 0;
                margin-bottom: 40px;
            }
            
            .installation-image {
                height: 300px !important;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 0 20px;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 20px;
            }
            
            .gallery-item img {
                height: 200px;
            }
            
            .service-item {
                padding: 15px;
                margin-bottom: 20px;
            }
            
            .service-icon {
                width: 35px;
                height: 35px;
                margin-right: 15px;
            }
            
            .service-text {
                font-size: 1rem;
            }
            
            /* Hide floating shapes on mobile for better performance */
            .hero-shape-1, .hero-shape-2, .hero-shape-3 {
                display: none;
            }
        }
        
        @media screen and (max-width: 480px) {
            h1, .hero-main-title {
                font-size: 1.8rem !important;
            }
            
            h2, .section-title {
                font-size: 1.5rem !important;
            }
            
            h3, .feature-title {
                font-size: 1.1rem !important;
            }
            
            .hero-subtitle {
                font-size: 1rem !important;
            }
            
            .feature-card {
                padding: 25px 15px;
            }
            
            .feature-icon {
                width: 60px;
                height: 60px;
            }
            
            .gallery-toggle-btn {
                padding: 14px 28px;
                font-size: 0.9rem;
            }
            
            .cta-button {
                padding: 16px 32px;
                font-size: 1rem;
            }
        }


.service-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-section {
    padding: 120px 0 90px;
}

.service-white-bg {
    background-color: #ffffff;
}

.service-gray-bg {
    background-color: #f3f6f8;
}

.service-compact {
    padding: 60px 0;
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: center;
}

.service-col-6 {
    flex: 0 0 50%;
    padding: 0 15px;
    max-width: 50%;
}

.service-col-8 {
    flex: 0 0 66.666667%;
    padding: 0 15px;
    max-width: 66.666667%;
}

.service-col-12 {
    flex: 0 0 100%;
    padding: 0 15px;
    max-width: 100%;
}

.service-offset-2 {
    margin-left: 16.666667%;
}

.service-text-center {
    text-align: center;
}

.service-hero {
    padding: 135px 0 90px;
    background: linear-gradient(135deg, #304658 0%, #1e3a4d 100%);
    position: relative;
    overflow: hidden;
}