/* Product Page Styles */
.product-page {
    margin-top: 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Hero Section */
.product-hero {
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pattern.png') repeat;
    opacity: 0.1;
}

.product-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.product-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.product-hero .tagline {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
}

.product-description {
    padding: 60px 0;
    background: #f8f9fa;
}

.product-description .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #37474F;
    margin-bottom: 25px;
}

/* Features Section */
.product-features {
    padding: 80px 0;
    background: white;
}

.product-features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 50px;
    position: relative;
}

.product-features h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #1a237e;
    margin: 20px auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 20px;
}

.feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-card i {
    font-size: 2.5rem;
    color: #1a237e;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #546E7A;
    flex-grow: 1;
    margin-bottom: 20px;
}

.feature-card a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
    align-self: center;
    padding: 0.8rem 1.5rem;
    background-color: #1a237e;
    color: white;
    border-radius: 4px;
    font-weight: 500;
}

.feature-card a:hover {
    color: white;
    background-color: #0d47a1;
    text-decoration: none;
}

/* Benefits Section */
.product-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 50px;
    position: relative;
}

.product-benefits h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #1a237e;
    margin: 20px auto 0;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.benefit-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 15px;
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #546E7A;
}

/* Demo Section */
.product-demo {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 100%);
    text-align: center;
}

.product-demo h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.product-demo p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.demo-request-btn {
    background: white;
    color: #1a237e;
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.demo-request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

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

/* Section Headers */
section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 2.5rem;
    }
    
    .product-hero .tagline {
        font-size: 1.4rem;
    }
    
    .product-description p {
        font-size: 1.1rem;
    }
    
    .product-features h2,
    .product-benefits h2,
    .product-demo h2 {
        font-size: 2rem;
    }
    
    .feature-card,
    .benefit-item {
        padding: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-hero-content,
.product-description p,
.feature-card,
.benefit-item {
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.6s;
}

.cv-submission {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cv-submission h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cv-submission i {
    margin-right: 0.5rem;
    color: #3498db;
}

.cv-submission p {
    font-size: 1.2rem;
    color: #666;
}

.cv-submission a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cv-submission a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-links a {
    color: #1a237e;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #3498db;
    transform: translateY(-3px);
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        padding: 20px 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: block;
    }

    .nav-links li {
        display: block;
        margin: 10px 20px;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 20px;
    }

    .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 24px;
        background: none;
        border: none;
        color: #1a237e;
        cursor: pointer;
        padding: 10px;
    }

    /* Hero Section */
    .product-hero {
        padding: 60px 20px;
    }

    .product-hero h1 {
        font-size: 2rem;
    }

    .product-hero .tagline {
        font-size: 1.2rem;
    }

    /* Description Section */
    .product-description {
        padding: 40px 20px;
    }

    .container {
        padding: 0 20px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
        min-height: 300px;
    }

    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        padding: 20px;
    }

    /* Demo Section */
    .product-demo {
        padding: 40px 20px;
    }

    .product-demo h2 {
        font-size: 1.5rem;
    }

    .demo-request-btn {
        width: 100%;
        max-width: 300px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Tablet Styles */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .container {
        padding: 0 40px;
    }
}

/* Add mobile menu button to header */
header nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.mobile-menu-btn {
    display: none;
}

@media screen and (max-width: 768px) {
    .logo img {
        max-width: 120px;
    }
}

/* Animation for mobile menu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links.active {
    animation: slideDown 0.3s ease-out;
} 