
/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --coop-blue: #2563eb;
    --coop-orange: #f97316;
    --coop-yellow: #fbbf24;
    --coop-white: #ffffff;
    --dark-blue: #1e40af;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #1e293b;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--coop-white);
    padding: 1rem 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-decoration: none;
}

.logo-icon{
    width: 36px;
    height: 36px;
    /* background: linear-gradient(135deg, var(--coop-blue), var(--coop-orange)); */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
}

.logo-icon img {
    width: 80px;
    border-radius: 8px;
    font-weight: 800;
    margin-right: 50px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    background-color: var(--coop-orange);
    border-radius: 5px;
    padding: 10px 10px;
}

.nav-links a.active {
    background-color: var(--coop-orange);
    border-radius: 5px;
    padding: 10px 10px;
    color: white;
}

.nav-cta {
    background: var(--coop-blue);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--dark-blue);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu span {
    width: 24px;
    height: 2px;
    background: var(--dark-gray);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 8rem 5% 5rem;
    background: var(--dark-blue);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--coop-yellow);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    color: var(--coop-white);
    margin: 1.5rem 0;
    line-height: 1.8;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-top: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 5%;
    background: var(--coop-white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Contact Info */
.contact-info {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-info h2 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--coop-blue), var(--coop-orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.info-content a {
    color: var(--coop-blue);
    text-decoration: none;
    transition: color 0.2s;
}

.info-content a:hover {
    color: var(--coop-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coop-blue);
    text-decoration: none;
    transition: all 0.2s;
}

.social-link:hover {
    background: var(--coop-blue);
    color: white;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 12px;
}

.contact-form-wrapper h2 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.contact-form-wrapper > p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}



.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--coop-blue);
}

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--coop-orange);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: rgba(223, 177, 91, 0.925);
}

/* Map Section */
.map-section {
    padding: 0 5% 5rem;
    background-image: url(../jetro_media/locations.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    

    
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    height: 300px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 10rm;
}

/* Office Hours */
.office-hours {
    padding: 5rem 5%;
    background: var(--light-gray);
}

.hours-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.hours-item {
    background: var(--coop-white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--coop-orange);
}

.day {
    font-weight: 600;
    color: var(--dark-gray);
    display: block;
    margin-bottom: 0.5rem;
}

.time {
    color: var(--medium-gray);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 5%;
    background: var(--coop-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-gray);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question h3 {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.faq-icon {
    color: var(--coop-orange);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--medium-gray);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: white;
    padding: 3rem 5% 2rem;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    margin-bottom: 1rem;
    color: var(--coop-yellow);
}

.footer-brand p {
    color: var(--coop-white);
    line-height: 1.7;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--coop-yellow);
}

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

.footer-links a {
    color: var(--coop-white);
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--coop-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: var(--coop-white);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero {
        text-align: center;
        padding-top: 7rem;
    }
}
