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

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            background-color: #1a1a1a;
            color: white;
        }

        /* Header */
        .header {
            background: linear-gradient(45deg, #1e3c72, #2a5298);
            padding: 1rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .logo-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .logo {
            width: 80px;
            height: 80px;
            background: #ff0000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s infinite;
        }

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

        .company-name {
            font-size: 2.5rem;
            font-weight: bold;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #fff;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-3px);
        }

        /* Hero Section */
        .hero {
            /*background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23333" width="1200" height="800"/></svg>');*/
            background: url(img/prolijo.webp) no-repeat center center;
            background-size: cover;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(0,0,0,0.8);
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid #ff0000;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .hero-highlight {
            color: #ff0000;
            font-weight: bold;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .feature-item {
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(255,0,0,0.2);
            transform: translateY(-5px);
        }

        .whatsapp-button {
            background: #25d366;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 2rem;
            animation: bounce 2s infinite;
            display: inline-block;
            text-decoration: none;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .whatsapp-button:hover {
            background: #128c7e;
            transform: scale(1.05);
        }

        /* Services Section */
        .services {
            padding: 4rem 2rem;
            background: #2a2a2a;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #ff0000;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .service-card {
            background: #1a1a1a;
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 15px;
            border: 2px solid #444;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            border-color: #ff0000;
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255,0,0,0.3);
        }

        .service-header {
            background: #ff0000;
            color: white;
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
            margin: 1rem 0;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #444;
            transition: color 0.3s ease;
        }

        .feature-list li:hover {
            color: #ff0000;
        }

        .feature-list li::before {
            content: '✓ ';
            color: #25d366;
            font-weight: bold;
        }

        .service-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .service-image {
            height: 150px;
            background: #333;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
            text-align: center;
        }

        .service-image:hover {
            transform: scale(1.05);
        }

        /* 24/7 Service Section */
        .service-247 {
            background: linear-gradient(45deg, #1e3c72, #2a5298);
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
        }

        .service-247::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
            animation: stars 20s linear infinite;
        }

        @keyframes stars {
            from { transform: translateY(0); }
            to { transform: translateY(-100px); }
        }

        .available-hours {
            font-size: 3rem;
            font-weight: bold;
            color: #fff;
            margin-bottom: 1rem;
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 10px #fff; }
            to { text-shadow: 0 0 20px #ff0000, 0 0 30px #ff0000; }
        }

        .coverage-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .coverage-image {
            height: 200px;
            background: #333;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }

        .coverage-image:hover {
            transform: scale(1.05);
        }

        /* Emergency Section */
        .emergency {
            background: #ff0000;
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .emergency::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                rgba(255,255,255,0.1),
                rgba(255,255,255,0.1) 10px,
                transparent 10px,
                transparent 20px
            );
            animation: stripes 1s linear infinite;
        }

        @keyframes stripes {
            from { transform: translateX(0); }
            to { transform: translateX(20px); }
        }

        .emergency-title {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            animation: flash 1s infinite;
        }

        @keyframes flash {
            0%, 50% { opacity: 1; }
            25%, 75% { opacity: 0.5; }
        }

        .emergency-phone {
            font-size: 4rem;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
            display: inline-block;
            background: rgba(0,0,0,0.3);
            padding: 1rem 2rem;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .emergency-phone:hover {
            background: rgba(0,0,0,0.5);
            transform: scale(1.05);
        }

        /* Free Estimate Section */
        .free-estimate {
            background: #fff;
            color: #333;
            padding: 3rem 2rem;
            text-align: center;
        }

        .estimate-box {
            max-width: 600px;
            margin: 0 auto;
            background: #f8f8f8;
            padding: 2rem;
            border-radius: 15px;
            border: 3px solid #ff0000;
            position: relative;
            animation: slideInLeft 1s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .estimate-title {
            color: #ff0000;
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .estimate-features {
            list-style: none;
            text-align: left;
            margin: 1rem 0;
        }

        .estimate-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #ddd;
        }

        .estimate-features li::before {
            content: '⚠️ ';
            margin-right: 0.5rem;
        }

        /* Coverage Areas */
        .coverage-areas {
            background: #1a1a1a;
            padding: 3rem 2rem;
            text-align: center;
        }

        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .coverage-item {
            background: #333;
            padding: 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .coverage-item:hover {
            background: #444;
            border-color: #ff0000;
            transform: translateY(-5px);
        }

        /* Final Section */
        .final-section {
            background: linear-gradient(45deg, #1e3c72, #2a5298);
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
        }

        .final-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .final-card {
            background: rgba(0,0,0,0.8);
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid #ff0000;
            transition: all 0.3s ease;
        }

        .final-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255,0,0,0.3);
        }

        /* Floating Buttons */
        .floating-warning {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: #ff9500;
            color: white;
            padding: 1rem;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(255,149,0,0.4);
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            animation: warning-pulse 2s infinite;
        }

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

        .floating-warning:hover {
            background: #ff7700;
            transform: scale(1.1);
        }

        .floating-whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #25d366;
            color: white;
            padding: 1rem;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(37,211,102,0.4);
            transition: all 0.3s ease;
            animation: float 3s ease-in-out infinite;
        }

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

        .floating-whatsapp:hover {
            background: #128c7e;
            transform: scale(1.1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .company-name {
                font-size: 1.8rem;
            }
            
            .contact-info {
                flex-direction:row;
                gap: 1rem;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .emergency-phone {
                font-size: 2.5rem;
            }
            
            .floating-warning {
                font-size: 0.8rem;
                padding: 0.5rem;
            }
        }

        /* Additional styling for images */
        .service-image, .coverage-image {
           /* background-image: url('/api/placeholder/200/150');*/
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(img/banner.webp);
            background-size: cover;
            background-position: center;
        }
        