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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Navigation Bar */
.navbar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    border-bottom: 2px solid #ffd700;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

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

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

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: #fff;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1rem;
    color: #555;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card li {
    padding: 5px 0;
    color: #666;
}

.service-card li:before {
    content: "✓ ";
    color: #667eea;
    font-weight: bold;
    margin-right: 8px;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

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

.feature {
    background: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.feature h4 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

/* Content Section */
.content-section {
    background-color: white;
    padding: 60px 20px;
    min-height: calc(100vh - 200px);
}

.content-section .container {
    max-width: 900px;
}

.content-section h1 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 10px;
    margin-top: 20px;
}

.last-updated {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-style: italic;
}

.content-section h2 {
    color: #667eea;
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content-section h3 {
    color: #764ba2;
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.content-section h4 {
    color: #667eea;
    font-size: 1.1rem;
    margin-top: 15px;
    margin-bottom: 8px;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-section li {
    margin-bottom: 8px;
    color: #555;
}

.content-section a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.contact-form {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 30px;
    border-radius: 10px;
}

.contact-form h2 {
    color: #667eea;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.form-note {
    font-size: 0.85rem;
    color: #999;
    margin-top: 10px;
}

.contact-info {
    background: white;
}

.contact-info h2 {
    color: #667eea;
    margin-bottom: 20px;
}

.info-box {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.info-box h3 {
    color: #667eea;
    margin-bottom: 10px;
}

.contact-detail {
    font-weight: bold;
    color: #764ba2;
    margin-top: 5px;
}

.intro-text {
    font-size: 1.1rem;
    color: #666;
    margin: 20px 0;
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
}

.faq-section h2 {
    color: #667eea;
    margin-bottom: 30px;
}

.faq-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-item h4 {
    color: #667eea;
    margin-bottom: 10px;
    cursor: pointer;
}

.faq-item p {
    color: #666;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
}

.footer p {
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding-bottom: 3px;
    border-bottom: 2px solid transparent;
}

.footer-links a:hover {
    border-bottom: 2px solid #ffd700;
}

/* CTA Home Section */
.cta-home {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    margin-top: 60px;
}

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

.cta-text h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-text p {
    color: rgba(255,255,255,0.95);
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn-cta-home {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-cta-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    background-color: #f5f5f5;
}

.cta-image {
    flex: 1;
}

.cta-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Responsive adjustments for hero and CTA */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

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

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-content {
        grid-template-columns: 1fr;
    }

    .cta-text h2 {
        font-size: 1.8rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .nav-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .services h2,
    .why-choose-us h2 {
        font-size: 2rem;
    }

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

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-section h1 {
        font-size: 1.8rem;
    }

    .content-section h2 {
        font-size: 1.4rem;
    }

    .faq-section {
        padding: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.3rem;
    }

    .nav-menu {
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .hero {
        padding: 40px 20px;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .content-section {
        padding: 30px 20px;
    }

    .content-section h1 {
        font-size: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.2rem;
    }

    .service-card {
        padding: 20px;
    }

    .feature {
        padding: 15px;
    }
}

/* About Us Page */
.hero-about, .hero-services, .hero-portfolio, .hero-team, .hero-blog {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-about h2, .hero-services h2, .hero-portfolio h2, .hero-team h2, .hero-blog h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-about p, .hero-services p, .hero-portfolio p, .hero-team p, .hero-blog p {
    font-size: 1.3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.value-box {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.value-box h3 {
    color: #667eea;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.value-box p {
    color: #666;
    line-height: 1.8;
}

.stats-section {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin: 60px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-card h3 {
    color: #667eea;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.stat-card p {
    color: #666;
    font-size: 1.1rem;
}

.mission-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    text-align: center;
}

.mission-section h2 {
    color: #667eea;
    margin-bottom: 20px;
}

.mission-section p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Service Detail Pages */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: start;
}

.service-detail.alternate {
    grid-template-columns: 1fr 1fr;
}

.service-detail.alternate .service-detail-text {
    order: 2;
}

.service-detail.alternate .service-detail-image {
    order: 1;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 15px;
}

.service-detail-text h4 {
    color: #764ba2;
    margin-top: 20px;
    margin-bottom: 10px;
}

.service-detail-text ul {
    margin-left: 20px;
}

.service-detail-text li {
    margin-bottom: 10px;
    color: #666;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 10px;
    margin-top: 60px;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Portfolio Page */
.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 60px 0;
    align-items: start;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.portfolio-item.alternate {
    grid-template-columns: 1fr 1fr;
}

.portfolio-item.alternate .portfolio-content {
    order: 2;
}

.portfolio-item.alternate .portfolio-image {
    order: 1;
}

.portfolio-image {
    flex: 1;
}

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

.portfolio-content {
    flex: 1;
}

.portfolio-content h3 {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.portfolio-content p {
    color: #666;
    margin-bottom: 10px;
}

.portfolio-content h4 {
    color: #764ba2;
    margin-top: 15px;
    margin-bottom: 10px;
}

.portfolio-content ul {
    margin-left: 20px;
}

.portfolio-content li {
    color: #666;
    margin-bottom: 8px;
}

.portfolio-stats {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
    text-align: center;
}

/* Team Page */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.team-member h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-member .role {
    color: #667eea;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.team-member .bio {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.team-member .expertise {
    color: #764ba2;
    font-size: 0.9rem;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.team-culture {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
}

.team-culture h2 {
    color: #667eea;
    text-align: center;
    margin-bottom: 30px;
}

.team-culture > p {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.culture-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.culture-item h4 {
    color: #667eea;
    margin-bottom: 10px;
}

.culture-item p {
    color: #666;
    line-height: 1.6;
}

.join-team {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin-top: 60px;
    text-align: center;
}

.join-team h2 {
    color: white;
    margin-bottom: 15px;
}

.join-team p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
}

.join-team a {
    color: #ffd700;
}

/* Blog Page */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: bold;
}

.blog-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin: 10px 0;
    line-height: 1.4;
}

.blog-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-card ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.blog-card li {
    color: #666;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #764ba2;
    margin-left: 5px;
}

.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 10px;
    margin-top: 60px;
    text-align: center;
}

.newsletter-section h2 {
    color: white;
    margin-bottom: 15px;
}

.newsletter-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 12px 30px;
    background-color: white;
    color: #667eea;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive adjustments for new pages */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .service-detail {
        grid-template-columns: 1fr;
    }

    .service-detail.alternate {
        grid-template-columns: 1fr;
    }

    .service-detail-text {
        order: auto !important;
    }

    .service-detail-image {
        order: auto !important;
    }

    .portfolio-item {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .portfolio-item.alternate {
        grid-template-columns: 1fr;
    }

    .portfolio-content {
        order: auto !important;
    }

    .portfolio-image {
        order: auto !important;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .hero-about h2, .hero-services h2, .hero-portfolio h2, .hero-team h2, .hero-blog h2 {
        font-size: 2rem;
    }

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

    .newsletter-form {
        flex-direction: column;
    }
}

/* Products Page */
.products-intro {
    text-align: center;
    margin-bottom: 40px;
}

.products-intro h2 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 15px;
}

.products-intro p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.product-brand {
    color: #667eea;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.product-specs span {
    background: #f0f0f0;
    color: #666;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.product-price {
    font-size: 1.8rem;
    color: #667eea;
    font-weight: bold;
    margin-bottom: 15px;
}

.btn-product {
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Why Choose Section */
.why-choose {
    background: #f9f9f9;
    padding: 60px 20px;
    margin-top: 40px;
}

.why-choose h2 {
    color: #667eea;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

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

.feature-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.feature-item h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

/* Footer */
footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section p {
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.75);
}

/* Responsive Products */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .product-card {
        margin: 0;
    }

    .product-image {
        height: 200px;
    }

    .why-choose {
        padding: 40px 20px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 180px;
    }

    .product-specs {
        flex-direction: column;
        gap: 5px;
    }

    .product-specs span {
        display: block;
    }
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: bold;
}

.cart-notification.show {
    opacity: 1;
}

/* Cart Badge */
.cart-badge {
    display: none;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 5px;
    vertical-align: text-top;
}

/* Shopping Cart Container */
.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.cart-items {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.cart-items h2 {
    color: #667eea;
    margin-bottom: 20px;
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.empty-cart {
    text-align: center;
    color: #999;
    padding: 40px;
}

.empty-cart a {
    color: #667eea;
    font-weight: bold;
    text-decoration: none;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto 80px;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details h3 {
    color: #333;
    font-size: 1rem;
    margin-bottom: 5px;
}

.item-details .brand {
    color: #667eea;
    font-size: 0.85rem;
    font-weight: bold;
}

.item-details .price {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.item-quantity label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.qty-controls button {
    width: 30px;
    height: 30px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.qty-controls button:hover {
    background: #764ba2;
}

.qty-controls input {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    font-weight: bold;
}

.item-total p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #667eea;
}

.btn-remove {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background: #ff5252;
}

/* Cart Summary */
.cart-summary {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h2 {
    color: #667eea;
    margin-bottom: 20px;
}

.summary-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: bold;
    color: #667eea;
}

.summary-box hr {
    margin: 15px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.summary-note {
    font-size: 0.85rem;
    color: #999;
    margin: 15px 0;
    text-align: center;
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-continue-shopping {
    display: block;
    width: 100%;
    padding: 12px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border: 2px solid #667eea;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-continue-shopping:hover {
    background: #667eea;
    color: white;
}

/* Checkout Container */
.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.checkout-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    color: #667eea;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group.checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

.form-group.checkbox a {
    color: #667eea;
    text-decoration: none;
}

.form-group.checkbox a:hover {
    text-decoration: underline;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-option {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option input {
    margin-right: 10px;
}

.payment-option input:checked + label {
    color: #667eea;
    font-weight: bold;
}

.payment-option:has(input:checked) {
    border-color: #667eea;
    background: #f0f4ff;
}

.btn-place-order {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-place-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Order Summary Sidebar */
.order-summary-sidebar {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary-sidebar h3 {
    color: #667eea;
    margin-bottom: 20px;
}

.order-items-list {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.item-info {
    flex: 1;
}

.item-name {
    color: #333;
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.item-qty {
    color: #999;
    font-size: 0.85rem;
}

.item-price {
    color: #667eea;
    font-weight: bold;
    min-width: 80px;
    text-align: right;
}

.order-totals {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #666;
}

.total-row.grand-total {
    font-size: 1.3rem;
    font-weight: bold;
    color: #667eea;
}

.order-totals hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 10px 0;
}

.secure-badge {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 12px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Order Confirmation */
.confirmation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 40px 0;
}

.confirmation-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 20px;
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confirmation-card h1 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 15px;
}

.confirmation-message {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.order-details {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item .label {
    color: #666;
    font-weight: bold;
}

.detail-item .value {
    color: #667eea;
    font-weight: bold;
}

.next-steps {
    background: #f0f4ff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: left;
}

.next-steps h3 {
    color: #667eea;
    margin-bottom: 15px;
}

.next-steps ol {
    margin-left: 20px;
    color: #666;
}

.next-steps li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-continue {
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-continue:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-home {
    padding: 12px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border: 2px solid #667eea;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #667eea;
    color: white;
}

.support-info {
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 15px;
    border-radius: 5px;
    color: #856404;
}

.support-info h4 {
    color: #856404;
    margin-bottom: 5px;
}

.support-info a {
    color: #856404;
    font-weight: bold;
}

/* Responsive Checkout */
@media (max-width: 768px) {
    .cart-container,
    .checkout-container {
        grid-template-columns: 1fr;
    }

    .cart-summary,
    .order-summary-sidebar {
        position: relative;
        top: 0;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }

    .item-quantity {
        grid-column: 1 / -1;
    }

    .item-total,
    .btn-remove {
        grid-column: 1 / -1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }
}
