* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    background: #1B2435;
    color: #1f2937;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
   font-size: 1.5rem;
    font-weight: 900;
    color: #1A1A1A;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: rgb(247, 121, 29);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: rgb(247, 121, 29);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #0f172a;
}

.menu-icon {
    stroke: currentColor;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 20px 24px;
    text-align: right;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #0f172a;
}

.close-icon {
    stroke: currentColor;
}

.mobile-nav-list {
    list-style: none;
    padding: 40px 24px;
}

.mobile-nav-list li {
    margin-bottom: 8px;
}

.mobile-nav-link {
    display: block;
    color: #1f2937;
    font-weight: 500;
    font-size: 1.1rem;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s;
}

.mobile-nav-link:hover {
    color: rgb(247, 121, 29);
    background: rgba(247, 121, 29, 0.1);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

/* Contact Main - Centered Layout */
.contact-main {
    min-height: calc(100vh - 73px - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

.contact-container {
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.contact-container h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.subtitle {
    color: #94a3b8;
    font-size: 1.25rem;
    margin-bottom: 64px;
}

/* Contact Grid - Three Columns */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.contact-item {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s, background 0.2s;
}

.contact-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.contact-item h3 {
    color: rgb(247, 121, 29);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.contact-item a,
.contact-item p {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: rgb(247, 121, 29);
}

/* Footer */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 30px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: rgb(247, 121, 29);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .contact-main {
        padding: 60px 24px;
        min-height: auto;
    }
    
    .contact-container h1 {
        font-size: 2.25rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 48px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-item {
        padding: 24px;
    }
    
    .footer-simple {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-container h1 {
        font-size: 1.875rem;
    }
    
    .contact-item a,
    .contact-item p {
        font-size: 1.1rem;
    }
}