/* Product Page Styles */

/* Hero Section */
.product-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-text h2 {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 25px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
    border: 2px solid #4CAF50;
}

.btn-primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.btn-secondary:hover {
    background-color: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.hero-image {
    text-align: center;
}

.product-main-image {
    max-width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

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

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    background: white;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #4CAF50;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* 360 View Section */
.view-360-section {
    padding: 80px 0;
    background-color: #ffffff;
    color: white;
}

.view-360-section .section-title,
.view-360-section .section-subtitle {
    color: white;
}

.view-360-container {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
}

.product-360 {
    position: relative;
}

.product-360-image {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.product-360:hover .product-360-image {
    transform: rotateY(15deg);
}

.view-360-instruction {
    margin-top: 20px;
    font-style: italic;
    opacity: 0.9;
}

/* Hx Manager Section */
.hx-manager-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.manager-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.manager-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.manager-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
}

.manager-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.manager-features {
    list-style: none;
    padding: 0;
}

.manager-features li {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
    color: #555;
}

.manager-features li:last-child {
    border-bottom: none;
}

.manager-features strong {
    color: #4CAF50;
    display: block;
    margin-bottom: 5px;
}

/* Smart Devices Section */
.smart-devices-section {
    padding: 80px 0;
    background-color: #fff;
}

.devices-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.devices-text h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.devices-benefits {
    list-style: none;
    padding: 0;
}

.devices-benefits li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.devices-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.3rem;
}

.devices-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.product-contact-form {
    max-width: 700px;
    margin: 50px auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-group textarea {
    resize: vertical;
}

.product-contact-form button[type="submit"] {
    width: 100%;
    margin-top: 20px;
    cursor: pointer;
    border: none;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background-color: white;
    color: #4CAF50;
    border: 2px solid white;
}

.cta-section .btn:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content,
    .manager-content,
    .devices-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .features-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .product-hero,
    .features-section,
    .hx-manager-section,
    .smart-devices-section,
    .contact-form-section,
    .cta-section {
        padding: 50px 0;
    }
}

