/* Food Delivery Information Hub - Map-Themed Design */

:root {
    --primary-navy: #1a365d;
    --primary-light-navy: #2c5282;
    --accent-green: #48bb78;
    --accent-light-green: #68d391;
    --bg-light-grey: #f7fafc;
    --bg-white: #ffffff;
    --text-dark: #2d3748;
    --text-medium: #4a5568;
    --text-light: #718096;
    --border-color: #e2e8f0;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light-grey);
}

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

/* Header & Navigation */
header {
    background-color: var(--primary-navy);
    color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

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

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-size: 14px;
}

nav a:hover {
    background-color: var(--accent-green);
}

nav a.active {
    background-color: var(--accent-green);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-light-navy) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

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

.content-section {
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.content-section h2 {
    color: var(--primary-navy);
    font-size: 28px;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--accent-green);
    padding-bottom: 10px;
}

.content-section h3 {
    color: var(--primary-light-navy);
    font-size: 22px;
    margin: 25px 0 15px 0;
}

.content-section p {
    margin-bottom: 15px;
    color: var(--text-medium);
}

.content-section ul, .content-section ol {
    margin: 15px 0;
    padding-left: 25px;
}

.content-section li {
    margin-bottom: 10px;
    color: var(--text-medium);
}

/* Cards & Info Blocks */
.info-card {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-green);
}

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

.grid-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-navy);
}

.grid-card h3 {
    color: var(--primary-navy);
    margin-top: 0;
}

/* Icon Features */
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-light-green) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 15px;
}

/* Workflow Diagram */
.workflow-container {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    margin: 30px 0;
}

.workflow-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.workflow-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 20px;
    background: var(--bg-light-grey);
    border-radius: 8px;
    position: relative;
}

.workflow-step .step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.workflow-arrow {
    font-size: 24px;
    color: var(--accent-green);
}

/* FAQ Accordion */
faq-item {
    background: var(--bg-white);
    border-radius: 8px;
    margin: 10px 0;
    box-shadow: var(--shadow);
    overflow: hidden;
}

faq-question {
    background: var(--primary-navy);
    color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

faq-question:hover {
    background: var(--primary-light-navy);
}

faq-answer {
    padding: 20px;
    display: none;
}

faq-item.active faq-answer {
    display: block;
}

/* Disclaimer Banner */
.disclaimer-banner {
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    border: 2px solid #fc8181;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    color: #742a2a;
}

.disclaimer-banner h4 {
    color: #c53030;
    margin-bottom: 10px;
}

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 30px 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(72, 187, 120, 0.1);
}

.btn-submit {
    background: var(--primary-navy);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background: var(--accent-green);
}

/* Footer */
footer {
    background: var(--primary-navy);
    color: white;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.footer-section h4 {
    color: var(--accent-green);
    margin-bottom: 15px;
    font-size: 18px;
}

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

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

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--accent-green);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav a {
        padding: 12px 15px;
        display: block;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .workflow-steps {
        flex-direction: column;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    header, footer, .nav-toggle {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .content-section {
        padding: 0;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}