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

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-primary {
    background-color: #fff;
    color: #ff5722;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(to right, #ff5722, #ff9800);
    color: #fff;
    margin-top: 20px;
    width: 200px;
}

.btn-submit:hover {
    opacity: 0.9;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #ff5722; /* Brand Color */
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 14px;
    color: #555;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: #ff5722;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 150px; /* Space for fixed header */
    padding-bottom: 100px;
    background: linear-gradient(135deg, #ff7043 0%, #ff5722 100%); /* Orange/Red Gradient */
    color: #fff;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-content h4 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 16px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.hero-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: rgba(255,255,255,0.05);
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

/* Section Common */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h4 {
    color: #888;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 15px;
}

.section-title p {
    color: #777;
    max-width: 600px;
    margin: 0 auto;
    font-size: 14px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #fff;
}

.features-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    min-width: 250px;
    margin: 20px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.feature-item p {
    font-size: 13px;
    color: #777;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.feature-image {
    flex: 0 0 300px;
    text-align: center;
    margin: 0 20px;
}

.feature-image img {
    max-width: 100%;
    border-radius: 50%; /* Circle style like in VR image? Or product shot */
    /* Let's make it a nice rounded product shot */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Promo Section */
.promo {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.promo-container {
    display: flex;
    align-items: center;
}

.promo-image {
    flex: 1;
}

.promo-image img {
    max-width: 100%;
    border-radius: 10px;
}

.promo-content {
    flex: 1;
    padding-left: 50px;
}

.promo-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.promo-content > p {
    color: #666;
    margin-bottom: 30px;
}

.promo-list li {
    display: flex;
    margin-bottom: 25px;
}

.promo-list .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 87, 34, 0.1); /* Light Orange */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5722;
    margin-right: 20px;
    flex-shrink: 0;
}

.promo-list .text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.promo-list .text p {
    font-size: 13px;
    color: #777;
}

/* Products */
.products {
    padding: 100px 0;
    background-color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.product-card {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.product-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    background-color: #f6f6f6;
}

.product-info {
    padding: 22px;
}

.product-info h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #fff;
}

.contact-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #444;
}

.info-item p {
    color: #666;
    font-size: 14px;
}

.contact-form-wrapper {
    flex: 1.5;
    min-width: 300px;
    margin-left: 50px;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 30px;
    font-family: inherit;
    font-size: 14px;
    background-color: #fcfcfc;
    transition: border 0.3s;
}

.contact-form textarea {
    border-radius: 20px;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #ff5722;
}

.full-width {
    width: 100%;
}

/* Footer */
.footer {
    padding: 30px 0;
    background-color: #222;
    color: #888;
    text-align: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 50px;
        max-width: 100%;
    }
    
    .hero-image {
        justify-content: center;
    }

    .features-grid {
        flex-direction: column;
    }
    
    .feature-item.text-right,
    .feature-item.text-left {
        text-align: center;
    }
    
    .feature-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .promo-container {
        flex-direction: column;
    }
    
    .promo-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Mobile menu hidden for simplicity */
    }
    
    .hamburger {
        display: block;
    }
    
    .contact-grid {
        flex-direction: column;
    }
    
    .contact-form-wrapper {
        margin-left: 0;
        margin-top: 50px;
    }
    
    .contact-form .form-row {
        flex-direction: column;
        gap: 15px;
    }

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