
        /* ================== VARIABLES ================== */
        :root {
            --primary-dark: #2C3E50;
            --primary-gold: #C9A769;
            --primary-beige: #E8D9B5;
            --primary-light: #F8F9FA;
            --accent: #4ECDC4;
            --text-dark: #2C3E50;
            --text-light: #7F8C8D;
            --white: #FFFFFF;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        /* ================== BASE STYLES ================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--primary-light);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--text-dark);
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-gold);
        }

        /* ================== NAVBAR ================== */
        .navbar {
            background: transparent !important;
            backdrop-filter: blur(5px);
            padding: 1.5rem 2rem;
            transition: var(--transition);
        }

        .navbar.scrolled {
            background: rgba(44, 62, 80, 0.95) !important;
            box-shadow: var(--shadow);
            padding: 1rem 2rem;
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--white) !important;
        }

        .navbar-nav .nav-link {
            color: var(--white) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: var(--transition);
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .navbar-nav .nav-link:hover {
            color: var(--accent) !important;
            transform: translateY(-2px);
        }

        /* ================== HERO SECTION ================== */
        .hero-section {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(44, 62, 80, 0.7);
            z-index: -1;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            padding: 2rem;
        }

        .logo-video-container {
            width: 400px;
            height: 200px;
            margin: 0 auto 2rem;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }

        .logo-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-content p {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
        }

        .btn-hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
            color: var(--white);
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: var(--transition);
            text-decoration: none;
            display: inline-block;
            box-shadow: var(--shadow);
        }

        .btn-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            color: var(--white);
        }

        /* ================== SERVICES SECTION ================== */
        .services-section {
            padding: 5rem 0;
            background: var(--white);
        }

        .service-card {
            background: var(--primary-light);
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            box-shadow: var(--shadow);
            border: none;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .service-img {
            height: 200px;
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 3rem;
        }

        .service-content {
            padding: 2rem;
        }

        .service-content h3 {
            color: var(--primary-dark);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .service-content p {
            color: var(--text-light);
            margin-bottom: 0;
        }

        /* ================== WHY US SECTION ================== */
        .why-us-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--primary-dark) 0%, #2C3E50 100%);
            color: var(--white);
        }

        .feature {
            text-align: center;
            padding: 2rem;
            transition: var(--transition);
        }

        .feature:hover {
            transform: translateY(-5px);
        }

        .feature i {
            font-size: 3rem;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

        .feature:hover i {
            transform: scale(1.1);
        }

        .feature h3 {
            color: var(--white);
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }

        .feature p {
            color: var(--primary-beige);
            margin-bottom: 0;
        }

        /* ================== REFERENCES SECTION ================== */
        .references-section {
            padding: 5rem 0;
            background: var(--white);
        }

        .reference-item {
            text-align: center;
            padding: 2rem;
            background: var(--primary-light);
            border-radius: 15px;
            transition: var(--transition);
            height: 100%;
            box-shadow: var(--shadow);
        }

        .reference-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .reference-item h3 {
            color: var(--primary-dark);
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .reference-item p {
            color: var(--text-light);
            margin-bottom: 0;
            font-weight: 500;
        }

       /* ================== FOOTER ================== */
        footer {
            background: var(--primary-dark);
            color: var(--white);
            padding: 3rem 0 1rem;
        }

        .footer-content {
            padding: 2rem 0;
        }

        .footer-section h3 {
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-gold);
        }

        .footer-section p, .footer-section a {
            color: var(--primary-beige);
            margin-bottom: 0.8rem;
            display: block;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-section a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.5rem;
            margin-top: 2rem;
        }

        .footer-bottom p {
            color: var(--primary-beige);
            margin: 0;
            text-align: center;
            font-size: 0.9rem;
        }
        /* Footer Social Icons */
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 1rem;
        }

        .footer-social a {
            color: var(--primary-beige);
            font-size: 1.5rem;
            transition: var(--transition);
        }

        .footer-social a:hover {
            color: var(--primary-gold);
            transform: translateY(-5px);
        }
       

        #scrollToTop:hover {
            background: var(--accent);
            color: var(--white);
        }

        /* ================== FLOATING BUTTONS ================== */
        .floating-btn {
            position: fixed;
            width: 60px;
            height: 60px;
            right: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 1000;
            transition: var(--transition);
            box-shadow: var(--shadow);
            color: var(--white);
            text-decoration: none;
        }

        .floating-btn:hover {
            transform: scale(1.1);
            color: var(--white);
        }

        .whatsapp-float {
            bottom: 100px;
            background: #25D366;
        }

        .whatsapp-float:hover {
            background: #128C7E;
        }

        .phone-float {
            bottom: 170px;
            background: var(--accent);
        }

        .phone-float:hover {
            background: #38B2AC;
        }

        .scroll-to-top {
            bottom: 30px;
            background: var(--primary-gold);
            opacity: 0;
            visibility: hidden;
            cursor: pointer;
        }

        .scroll-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            background: #B69560;
        }

        /* ================== RESPONSIVE ================== */
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem;
                background: rgba(44, 62, 80, 0.95) !important;
            }
            
            .logo-video-container {
                width: 300px;
                height: 150px;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                right: 20px;
            }

            .whatsapp-float {
                bottom: 90px;
            }

            .phone-float {
                bottom: 150px;
            }

            .service-card, .reference-item {
                margin-bottom: 2rem;
            }
        }

       

        /* ================== MakineDetay ================== */

        .makine-detay-container {
            max-width: 900px;
            margin: 40px auto;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 8px 32px rgba(44, 62, 80, 0.15);
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            animation: fadeIn 1.2s;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(40px);}
            to { opacity: 1; transform: translateY(0);}
        }
        .makine-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2d3a4b;
            margin-bottom: 18px;
            letter-spacing: 1px;
            text-shadow: 0 2px 8px #0059ffff;
        }
        .makine-img {
            width: 100%;
            max-width: 420px;
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(44, 62, 80, 0.10);
            margin-bottom: 24px;
            display: block;
            margin-left: auto;
            margin-right: auto;
            transition: transform 0.3s;
        }
        .makine-img:hover {
            transform: scale(1.05) rotate(-2deg);
        }
        .makine-info {
            font-size: 1.15rem;
            color: #444;
            margin-bottom: 24px;
            line-height: 1.7;
        }
        .makine-specs {
            background: #f6fafd;
            border-radius: 10px;
            padding: 18px 22px;
            margin-bottom: 24px;
            box-shadow: 0 2px 8px rgba(44, 62, 80, 0.05);
        }
        .makine-specs h3 {
            margin-top: 0;
            color: #1a73e8;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        .makine-specs ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .makine-specs li {
            padding: 7px 0;
            border-bottom: 1px solid #e3e8ee;
            font-size: 1rem;
        }
        .makine-specs li:last-child {
            border-bottom: none;
        }
        .makine-contact-btn {
            display: inline-block;
            background: linear-gradient(90deg, #1a73e8 0%, #00c6fb 100%);
            color: #fff;
            font-weight: 700;
            padding: 14px 38px;
            border-radius: 30px;
            font-size: 1.2rem;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(26, 115, 232, 0.15);
            margin-top: 18px;
            letter-spacing: 1px;
        }
        .makine-contact-btn:hover {
            background: linear-gradient(90deg, #00c6fb 0%, #1a73e8 100%);
            transform: scale(1.05);
        }
        /* Featured Machines Section */
       
        
        .featured-machines .section-title {
            color: var(--white);
        }
        
        .machine-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: var(--shadow);
        }
        
        .machine-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .machine-img {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .machine-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .machine-card:hover .machine-img img {
            transform: scale(1.05);
        }
        
        .machine-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .machine-content {
            padding: 1.5rem;
        }
        
        .machine-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 0.8rem;
            color: var(--white);
        }
        
        .machine-description {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.2rem;
            line-height: 1.6;
        }
        
        .machine-specs {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1rem;
        }
        
        .spec {
            text-align: center;
            flex: 1;
        }
        
        .spec-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
            display: block;
        }
        
        .spec-label {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .machine-button {
            display: block;
            text-align: center;
            background: var(--accent);
            color: var(--white);
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .machine-button:hover {
            background: var(--primary-gold);
            color: var(--white);
            transform: translateY(-2px);
        }
        
        .view-all {
            text-align: center;
            margin-top: 3rem;
        }
        
        .btn-view-all {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .btn-view-all:hover {
            background: var(--white);
            color: var(--primary-dark);
        }
        