:root {
            --primary-color: #1a4a3a;
            --secondary-color: #2d6a4f;
            --accent-color: #52b788;
            --gold-color: #ffd700;
            --dark-color: #1b1b1b;
            --light-color: #f8f9fa;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        /* Header Styles */
        .navbar {
           padding: 1rem 0;
        }

        .navbar-brand {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color) !important;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* Hero Section */
        .hero-section {
            background: url(../images/DSC_1852.jpg);
            background-size: cover;
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            background-position: center;
        }

        

        .hero-content {
            position: relative;
            z-index: 2;
            padding-top: 100px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .price-highlight {
            background: var(--gold-color);
            color: var(--dark-color);
            padding: 2rem 2rem;
            border-radius: 8px;
            font-size: 1.5rem;
            font-weight: 600;
            display: inline-block;
            margin: 1rem 0;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
            width: 100%;
            text-align: center;
            margin-top: 0px;
        }

        .original-price {
            text-decoration: line-through;
            opacity: 0.7;
            font-size: 1.1rem;
        }

        /* Product Gallery */
        .product-gallery {
            padding: 80px 0;
            background: white;
        }

        .gallery-item {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 2rem;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        /* Form Section */
        .form-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
        }

        .form-container {
            background: white;
            border-radius: 25px;
            padding: 3rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--gold-color));
        }

        .form-title {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 2rem;
            text-align: center;
        }

        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 15px;
            padding: 1rem 1.5rem;
            font-size: 1rem;
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
        }

        .form-control:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.2rem rgba(82, 183, 136, 0.25);
        }

        .form-label {
            font-weight: 500;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }

        .btn-preorder {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            border: none;
            border-radius: 15px;
            padding: 1.2rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            width: 100%;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-preorder:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(26, 74, 58, 0.3);
            color: white;
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: var(--primary-color);
            color: white;
        }

        .feature-card {
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--gold-color);
            margin-bottom: 1rem;
        }

        /* Footer */
        .footer {
            background: var(--dark-color);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
/* Limited Time Offer Highlight */
        .limited-offer {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            padding: 1.2rem 2.5rem;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            display: inline-block;
            margin: 1.5rem 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
            animation: pulse 2s infinite;
            position: relative;
            overflow: hidden;
            margin-bottom: -20px;
            width: 90%;
        }

        .limited-offer::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shine 3s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .price-highlight {
                font-size: 1.2rem;
                padding: 2rem 1.5rem;
            }
            
            .form-container {
                margin: 0 1rem;
                padding: 2rem;
            }
        }
        @media only screen and (max-width: 767.98px) {
.hero-content
{text-align: center; margin-bottom: 60px;}
.limited-offer
{font-size: 13px}
}