/* 2015-era Design Styles for A+ Logistics */

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

body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f5f5f5;
}

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

/* Header - Classic 2015 style */
.header {
    background: linear-gradient(to bottom, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    border-bottom: 3px solid #2980b9;
}

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

.logo h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo .plus {
    color: #3498db;
    font-weight: 900;
}

.logo .tagline {
    font-size: 12px;
    color: #bdc3c7;
    margin-top: -5px;
    font-style: italic;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 5px;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    display: block;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 600;
}

.nav a:hover {
    background: #2980b9;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

/* Hero Section - Dated gradient style */
.hero {
    background: url('../images/artem-balashevsky-ZhNYKwjRMh4-unsplash.jpg') center center / cover no-repeat;
    padding: 80px 0;
    text-align: center;
    color: white;
    box-shadow: inset 0 3px 10px rgba(0,0,0,0.2);
    position: relative;
}

.hero-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* Tracking Box - Classic rounded corner card */
.tracking-box {
    background: white;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-top: 4px solid #3498db;
}

.tracking-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.tracking-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tracking-form input {
    padding: 14px;
    font-size: 16px;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    transition: border-color 0.3s;
}

.tracking-form input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52,152,219,0.3);
}

.example-text {
    font-size: 12px;
    color: #7f8c8d;
    margin-top: 10px;
    font-style: italic;
}

.tracking-error {
    background: #ffe6e6;
    color: #c0392b;
    padding: 12px;
    border-radius: 4px;
    border-left: 4px solid #e74c3c;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

/* Buttons - Classic glossy 2015 style */
.btn-primary {
    background: linear-gradient(to bottom, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    transition: all 0.3s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: linear-gradient(to bottom, #2980b9 0%, #21618c 100%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: linear-gradient(to bottom, #27ae60 0%, #229954 100%);
    color: white;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);
    transition: all 0.3s;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    background: linear-gradient(to bottom, #229954 0%, #1e8449 100%);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Features Section */
.features {
    padding: 60px 0;
    background: white;
}

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

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

.feature-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #2980b9;
}

.icon-box img {
    width: 48px;
    height: 48px;
}

.feature-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

/* Supply Chain Section */
.supply-chain {
    padding: 60px 0;
    background: linear-gradient(to right, #ece9e6 0%, #ffffff 100%);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.column-left h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.column-left p {
    margin-bottom: 20px;
    color: #555;
    font-size: 15px;
}

.checklist {
    list-style: none;
    margin: 25px 0;
}

.checklist li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #2c3e50;
    font-weight: 500;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

.image-placeholder {
    background: url('../images/adrian-sulyok-sczNLg6rrhQ-unsplash.jpg') center center / cover no-repeat;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 5px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    border-radius: 8px;
}

.placeholder-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.placeholder-content p:first-child {
    font-size: 80px;
    margin-bottom: 10px;
}

.placeholder-content p:last-child {
    font-size: 20px;
    font-weight: 600;
}

/* Partnership Section */
.partnership {
    padding: 60px 0;
    background: #34495e;
    color: white;
}

.partnership-content h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.partnership-content > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
    opacity: 0.95;
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.partnership-item {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 6px;
    border-left: 4px solid #3498db;
}

.partnership-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3498db;
}

.partnership-item p {
    font-size: 14px;
    opacity: 0.9;
}

.partnership-content {
    text-align: center;
}

/* Email Signup Section */
.email-signup {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
}

.signup-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    border-top: 4px solid #27ae60;
}

.signup-box h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.signup-box > p {
    text-align: center;
    color: #555;
    margin-bottom: 30px;
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.signup-form input {
    padding: 14px;
    font-size: 15px;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
}

.signup-form input:focus {
    outline: none;
    border-color: #27ae60;
}

/* Footer - Classic multi-column */
.footer {
    background: #2c3e50;
    color: #bdc3c7;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-column p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
    margin: 5px 0;
}

/* Responsive Design - 2015 style media queries */
@media (max-width: 968px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .two-column {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 600px) {
    .hero-content h2 {
        font-size: 28px;
    }

    .tracking-box {
        padding: 25px;
    }

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

/* Additional Page Styles */

/* Page Header for Internal Pages */
.page-header {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(52, 73, 94, 0.85) 100%),
                url('../images/alberto-rodriguez--aCrA9FmT8Y-unsplash.jpg') center center / cover no-repeat;
    padding: 60px 0;
    text-align: center;
    color: white;
    box-shadow: inset 0 3px 10px rgba(0,0,0,0.2);
    position: relative;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 16px;
    opacity: 0.9;
}

/* Content Section Styles */
.content-section {
    padding: 60px 0;
    background: white;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    font-size: 24px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

.content-wrapper ul {
    margin-bottom: 20px;
    margin-left: 25px;
}

.content-wrapper ul li {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.feature-list {
    list-style: none;
    margin-left: 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.feature-list li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 12px;
}

/* Stats Grid (About Page) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.stat-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.stat-box h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-box p {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
}

/* About Page Images */
.about-image-section {
    margin: 40px 0;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 5px solid #f8f9fa;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(to right, #ece9e6 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 50px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.cta-box h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.cta-box p {
    color: #555;
    margin-bottom: 25px;
}

/* Careers Page Images */
.careers-image-section {
    margin: 30px 0;
}

.careers-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 5px solid #f8f9fa;
}

/* Benefits Grid (Careers Page) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.benefit-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit-card h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #555;
    font-size: 14px;
    margin: 0;
}

/* Job Listings (Careers Page) */
.job-listings {
    margin-top: 30px;
}

.job-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
    margin-bottom: 25px;
    border-left: 5px solid #3498db;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.job-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.job-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.job-location {
    font-size: 14px;
    color: #777;
    margin-bottom: 5px;
}

.job-type {
    font-size: 13px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
}

.job-card > p {
    color: #555;
    margin-bottom: 15px;
}

.job-requirements {
    list-style: none;
    margin: 15px 0 20px 0;
}

.job-requirements li {
    padding: 5px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.job-requirements li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.general-application {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(to right, #e8f5e9 0%, #ffffff 100%);
    border-radius: 8px;
    text-align: center;
    border: 2px solid #27ae60;
}

/* Contact Page Styles */
.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-form-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-form-section > p {
    color: #555;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    font-size: 15px;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    font-family: 'Open Sans', Arial, sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52,152,219,0.3);
}

.contact-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-card h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.contact-card a {
    color: #3498db;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #e0e0e0;
}

.faq-section h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.faq-item h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

/* Legal Content Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
}

.legal-content h3 {
    font-size: 20px;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content p {
    color: #555;
    font-size: 15px;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 30px;
}

.legal-content ul li {
    color: #555;
    font-size: 15px;
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-box-legal {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 6px;
    margin: 30px 0;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-box-legal p {
    margin-bottom: 10px;
}

.contact-box-legal a {
    color: #3498db;
    text-decoration: none;
}

.contact-box-legal a:hover {
    text-decoration: underline;
}

.legal-footer-note {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.legal-footer-note p {
    font-size: 13px;
    color: #777;
    font-style: italic;
}

/* Responsive Styles for New Pages */
@media (max-width: 968px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 600px) {
    .page-header h1 {
        font-size: 32px;
    }

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

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

    .content-wrapper h2 {
        font-size: 26px;
    }
}
