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

        body {
            line-height: 1.6;
            color: #1e1ec2;
        }

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

        header {
            background: rgb(8 97 185 / 95%);
            color: white;
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: top 0.3s ease;
        }

        header.phone-bar-hidden {
            top: 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #3498db;
        }
        .nav-phone {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 0.9rem;
        }

        .nav-phone-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-phone-item a {
            color: #3498db;
            text-decoration: none;
            font-weight: bold;
        }

        .nav-phone-item a:hover {
            color: #2980b9;
        }

       


        .phone-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: #2c3e50;
            color: white;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 0.9rem;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .phone-tooltip::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            border: 6px solid transparent;
            border-left-color: #2c3e50;
        }

       
        .phone-link {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .phone-link:hover {
            color: #3498db;
            text-decoration: underline;
        }

       
        main {
            margin-top: 120px;
        }

        main.phone-bar-hidden {
            margin-top: 80px;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 500px;
            overflow: hidden;
        }

        .carousel {
            display: flex;
            width: 400%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide {
            width: 25%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .slide1 {
            background-image: url('2.jpg');
			background-size: 100%;
			background-repeat: no-repeat;
        }

        .slide2 {
             background-image: url('8.jpg');
			background-size: 100%;
			background-repeat: no-repeat;
        }

      

        .carousel-content {
            z-index: 2;
            max-width: 600px;
            padding: 2rem;
        }

        .carousel-content h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .carousel-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-block;
            background: #e74c3c;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s;
            margin-right: 15px;
        }

        .cta-button:hover {
            background: #c0392b;
        }

        .cta-button.phone-cta {
            background: #09a66d;
        }

        .cta-button.phone-cta:hover {
            background: #219a52;
        }

        .carousel-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: background 0.3s;
        }

        .nav-dot.active {
            background: white;
        }

        .carousel-prev,
        .carousel-next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            transition: background 0.3s;
            z-index: 3;
        }

        .carousel-prev {
            left: 20px;
        }

        .carousel-next {
            right: 20px;
        }

        .carousel-prev:hover,
        .carousel-next:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .services {
            padding: 4rem 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 3rem;
            color: #2c3e50;
        }

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

        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
        }

        .wgxc {
            padding: 4rem 0;
            background: #ecf0f1;
        }

        .door-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .door-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .door-card:hover {
            transform: translateY(-5px);
        }

        .door-image {
            height: 220px;
            background: #bdc3c7;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        
       

        .door-info {
            padding: 1.5rem;
        }

        .door-info h3 {
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }

        .door-specs {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price {
            color: #e74c3c;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .condition-tag {
            background: #27ae60;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            font-size: 0.8rem;
        }

        .products {
            padding: 4rem 0;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
        }

        .product-image {
            height: 200px;
            background: #ecf0f1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #95a5a6;
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-info h3 {
            margin-bottom: 0.5rem;
            color: #2c3e50;
        }

        .contact {
            padding: 4rem 0;
            background: #2c3e50;
            color: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .contact-item {
            text-align: center;
        }

        .contact-item h3 {
            margin-bottom: 1rem;
            color: #3498db;
        }

        .emergency-phone {
            background: #e74c3c;
            color: white;
            padding: 15px;
            border-radius: 10px;
            margin-top: 1rem;
            text-align: center;
        }

        .emergency-phone h4 {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .emergency-phone .phone-number {
            font-size: 1.4rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

        footer {
            background: #131518;
            color: white;
            text-align: center;
            padding: 2rem 0;
        }
.ywfw-icon { width: 150px; }
		.wgxc-image { width: 100%; }
        @media (max-width: 768px) {
           
		   .top-menus {flex-direction: column;}

            .nav-phone {
                display: none;
            }
			.top-menus>ul {    
				display: flex;
				flex-direction: row;
				}

            .nav-links {
                flex-direction: column;
                gap: 1rem;
            }

            .carousel-container {
                height: 400px;
            }

            .carousel-content h1 {
                font-size: 1.8rem;
            }

            .carousel-content p {
                font-size: 1rem;
            }

            .service-grid,
            .product-grid,
            .door-grid {
                grid-template-columns: 1fr;
            }

            .carousel-prev,
            .carousel-next {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

           
            .phone-tooltip {
                display: none;
            }

            .cta-button {
                display: block;
                margin: 10px auto;
                text-align: center;
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s, transform 0.6s;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
