/* Custom CSS for Outlook Print Website */

:root {
    --primary-green: #2E7D32;
    --primary-green-hover: #1B5E20;
    --dark-green: #1B5E20;
    --light-green-bg: #4CAF50;
    --light-green: #C8E6C9;
    --accent-blue: #2196F3;
    --dark-gray: #333333;
    --light-gray: #F5F5F5;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

h1 {
    color: var(--dark-gray);
}

h2 {
    color: var(--dark-gray);
    font-weight: 700;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-green) !important;
}

.brand-text {
    color: var(--dark-green);
    font-family: 'Poppins', sans-serif;
}

.nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green) !important;
}

/* Contact Menu Item */
.nav-link-contact {
    background-color: #FFE0B2 !important;
    border-radius: 8px;
    padding: 0.5rem 1rem !important;
    font-weight: 600 !important;
    color: #E65100 !important;
    margin: 0 0.5rem;
}

.nav-link-contact:hover {
    background-color: #FFCC80 !important;
    color: #BF360C !important;
    transform: translateY(-1px);
}

/* Tray Selector Menu Item */
.nav-link-tray-selector {
    background-color: #FFE5E5 !important;
    border-radius: 8px;
    padding: 0.5rem 1rem !important;
    font-weight: 600 !important;
    color: #D32F2F !important;
    position: relative;
    margin: 0 0.5rem;
}

.nav-link-tray-selector:hover {
    background-color: #FFD0D0 !important;
    color: #B71C1C !important;
    transform: translateY(-1px);
}

.new-badge {
    position: absolute;
    top: -8px;
    right: -5px;
    background-color: #D32F2F;
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 0.625rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-green-hover);
    border-color: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
}

.hero-content h1 {
    color: var(--dark-gray);
    line-height: 1.2;
}

.hero-content .lead {
    color: #666;
    font-size: 1.25rem;
}

/* Tray Selector Banner - Full Width Horizontal */
.tray-selector-banner-section {
    background: linear-gradient(135deg, #FFE5E5 0%, #FFEDED 100%);
    padding: 1.5rem 0;
    border-top: 2px solid #FFD0D0;
    border-bottom: 2px solid #FFD0D0;
}

.tray-selector-banner {
    width: 100%;
}

.banner-content-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.banner-tag {
    background-color: #D32F2F;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.banner-text {
    color: #444;
    font-size: 1rem;
    line-height: 1.4;
}

.banner-text strong {
    color: #B71C1C;
    font-weight: 600;
}

.banner-right {
    flex-shrink: 0;
}

.btn-banner {
    background-color: #D32F2F;
    color: white;
    border: none;
    padding: 0.625rem 1.75rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-banner:hover {
    background-color: #B71C1C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
}

.eco-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(76, 175, 80, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 2px solid var(--light-green);
}

.eco-text {
    color: var(--dark-green);
    font-weight: 600;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}

.feature-list li {
    padding: 0.5rem 0;
    color: #555;
}

.video-container {
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-container iframe,
.video-container video {
    border: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trusted By Section */
.trusted-section {
    background-color: #fafafa;
}

.logo-placeholder {
    transition: transform 0.3s ease;
}

.logo-placeholder:hover {
    transform: scale(1.05);
}

/* Full Width Video Section */
.full-video-section {
    background-color: #fff;
}

.video-container-large {
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.video-container-large video {
    border: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Section */
.features-section {
    background-color: var(--light-gray);
}

.feature-card {
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e0e0e0;
}

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

.feature-icon {
    display: inline-block;
}

.feature-card h4 {
    color: var(--dark-gray);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f1 100%);
}

.pricing-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--light-green);
}

.pricing-header {
    background: linear-gradient(135deg, var(--light-green) 0%, #e8f5e9 100%);
    padding: 2rem;
}

.free-badge .badge {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: var(--dark-green);
    font-size: 1.75rem;
}

.price {
    color: var(--dark-gray);
}

.pricing-body {
    padding: 2rem;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 1.05rem;
}

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

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-gray);
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.stars {
    color: #FFC107;
    font-size: 1.25rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    font-size: 1.05rem;
}

.testimonial-author strong {
    color: var(--dark-gray);
    font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-hover) 100%);
    color: white;
}

.cta-section h2 {
    color: white;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-green);
    border-color: white;
}

.cta-section .btn-primary:hover {
    background-color: var(--light-gray);
    border-color: var(--light-gray);
    color: var(--dark-green);
}

/* Footer */
.footer {
    background-color: #2c2c2c !important;
}

.footer h5 {
    color: var(--light-green);
}

/* Download Page Styles */
.download-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
}

.download-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--light-green);
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.download-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--light-green);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
    }

    .hero-content {
        margin-bottom: 2rem;
    }

    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .tray-selector-banner-section {
        padding: 1rem 0;
    }

    .banner-content-horizontal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .banner-left {
        flex-direction: column;
        gap: 0.75rem;
    }

    .banner-text {
        font-size: 0.9rem;
    }

    .btn-banner {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }

    .new-badge {
        top: -6px;
        right: -3px;
        font-size: 0.55rem;
        padding: 1px 4px;
    }
}

/* Contact Page */
.contact-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
    min-height: 80vh;
}

.contact-header h1 {
    font-size: 2rem !important;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    color: var(--dark-gray);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Download Form Page */
.download-form-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f5e9 100%);
    min-height: 80vh;
}

.download-form-header h1 {
    font-size: 2rem !important;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    color: var(--dark-gray);
}

.download-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.download-form-card {
    background: white;
    border-radius: 16px;
    border: 2px solid var(--light-green);
    max-width: 800px;
    margin: 0 auto;
}

.download-form-card .form-label {
    font-weight: 600;
    color: var(--dark-gray);
}

.download-form-card .form-control,
.download-form-card .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.download-form-card .form-control:focus,
.download-form-card .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
}

.download-form-section .btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.download-form-section .btn-primary:hover {
    background-color: var(--primary-green-hover);
    border-color: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
}

.contact-form-card {
    background: white;
    border-radius: 16px;
    border: 2px solid var(--light-green);
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: var(--dark-gray);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(46, 125, 50, 0.25);
}

.contact-section .btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-section .btn-primary:hover {
    background-color: var(--primary-green-hover);
    border-color: var(--primary-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.4);
}

/* Terms and Conditions Page */
.terms-content h2 {
    color: var(--dark-green);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-green);
}

.terms-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.terms-content h1 {
    color: var(--dark-green);
    border-bottom: 3px solid var(--primary-green);
    padding-bottom: 1rem;
}

.installation-steps {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}

.installation-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.installation-steps li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Footer Link Hover */
.footer a:hover {
    color: var(--light-green) !important;
    text-decoration: underline !important;
}

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

.feature-card,
.testimonial-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}
