
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #44403c;
    background-color: #fafaf9;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 3rem;
    font-weight: 300;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #57534e;
}

.accent {
    color: #b45309;
}

.coming-soon {
    font-style: italic;
    color: #78716c;
    font-size: 1.125rem;
    margin: 1rem 0;
}

.coming-soon-small {
    font-style: italic;
    color: #78716c;
    font-size: 0.875rem;
}

/* Navigation */
.nav {
    background: #292524;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand h2 {
    color: #e7e5e4;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 300;
}

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

.nav-link {
    color: #a8a29e;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.nav-link:hover,
.nav-link.active {
    color: #fbbf24;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #e7e5e4;
    margin: 3px 0;
    transition: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #b45309;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #92400e;
    transform: translateY(-1px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-disabled {
    background: #9ca3af;
    color: white;
    cursor: not-allowed;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5f4 0%, #fafaf9 100%);
    padding: 5rem 0;
    text-align: center;
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    color: #292524;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #57534e;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Sections */
.services, .nav-cards {
    padding: 4rem 0;
}

.services {
    background: white;
}

.nav-cards {
    background: #f5f5f4;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #292524;
    font-weight: 300;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fafaf9;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #e7e5e4;
    transition: all 0.3s ease;
}

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

.service-icon {
    color: #b45309;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #292524;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* Navigation Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.nav-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e7e5e4;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: block;
}

.nav-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-icon {
    color: #b45309;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.nav-card:hover .card-icon {
    transform: scale(1.1);
}

.nav-card h3 {
    color: #292524;
    margin-bottom: 1rem;
    font-weight: 500;
}

.nav-card p {
    margin-bottom: 1.5rem;
}

.card-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b45309;
    font-weight: 500;
}

.nav-card:hover .card-link svg {
    transform: translateX(4px);
}

/* Main Content */
.main-content {
    min-height: 60vh;
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.page-header h1 {
    color: #292524;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #57534e;
    max-width: 600px;
    margin: 0 auto 1rem;
}

/* Package Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.package-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e7e5e4;
    overflow: hidden;
}

.package-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e7e5e4;
}

.leadership .package-header {
    background: #fef3c7;
}

.board .package-header {
    background: #dbeafe;
}

.package-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.package-title svg {
    color: #b45309;
}

.board .package-title svg {
    color: #1d4ed8;
}

.package-title h2 {
    color: #292524;
    margin: 0;
    font-weight: 500;
}

.package-details {
    display: flex;
    gap: 1.5rem;
    color: #57534e;
}

.detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.package-content {
    padding: 1.5rem;
}

.package-content h3 {
    color: #292524;
    margin: 1.5rem 0 1rem;
    font-weight: 500;
}

.content-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.content-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #57534e;
}

.content-list li::before {
    content: "•";
    color: #b45309;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.package-note {
    background: #fafaf9;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-style: italic;
    color: #78716c;
}

.cta-section {
    text-align: center;
}

.cta-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e7e5e4;
}

.cta-card h3 {
    color: #292524;
    margin-bottom: 1rem;
    font-weight: 500;
}

/* About Page */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e7e5e4;
}

.mission-card .card-icon {
    color: #b45309;
    margin-bottom: 1rem;
}

.mission-card h2 {
    color: #292524;
    margin-bottom: 1rem;
    font-weight: 500;
}

.history-section {
    margin-bottom: 4rem;
}

.history-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e7e5e4;
}

.history-card h2 {
    color: #292524;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.values-section {
    margin-bottom: 4rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.value-card {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    color: #b45309;
    margin: 0 auto 1rem;
}

.value-card h3 {
    color: #292524;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-section {
    margin-bottom: 2rem;
}

.team-card {
    background: #f5f5f4;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
}

.team-card h2 {
    color: #292524;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-card, .contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e7e5e4;
}

.contact-info-card h2, .contact-form-card h2 {
    color: #292524;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
}

.method-icon {
    color: #b45309;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.method-content h3 {
    color: #292524;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.method-content p {
    color: #57534e;
    margin-bottom: 0.25rem;
}

.method-content small {
    color: #78716c;
    font-size: 0.875rem;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group input:disabled,
.form-group textarea:disabled {
    background: #f9fafb;
    cursor: not-allowed;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: #78716c;
    margin-top: 0.5rem;
}

/* Process Section */
.process-section {
    text-align: center;
}

.process-card {
    background: #f5f5f4;
    padding: 2rem;
    border-radius: 0.75rem;
}

.process-card h3 {
    color: #292524;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #b45309;
    font-size: 1.125rem;
}

.process-step p {
    color: #57534e;
    margin: 0;
}

/* Footer */
.footer {
    background: #292524;
    color: #e7e5e4;
    padding: 3rem 0 1rem;
}

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

.footer-company h3 {
    color: #e7e5e4;
    margin-bottom: 1rem;
    font-weight: 300;
}

.footer-company p {
    color: #a8a29e;
    line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #a8a29e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fbbf24;
}

.contact-info p {
    color: #a8a29e;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #44403c;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #78716c;
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .package-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .package-card,
    .mission-card,
    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }
}
