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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Mulish', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff6b35;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Growth Roadmap Section */
.growth-roadmap {
    background: #1a1a2e;
    padding: 120px 0 80px;
    color: white;
}

.roadmap-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.roadmap-content {
    background: white;
    border-radius: 20px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.roadmap-text {
    color: #333;
}

.roadmap-text h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.2;
}

.roadmap-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #666;
}

.detail-button {
    background: transparent;
    color: #ff6b35;
    padding: 15px 30px;
    border: 2px solid #ff6b35;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-button:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.roadmap-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Future Strategies Section */
.future-strategies {
    background: #1a1a2e;
    padding: 100px 0;
    color: white;
}

.strategies-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.strategies-container h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.strategy-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.strategy-item:hover {
    transform: translateY(-10px);
}

.strategy-image {
    width: 100%;
    height: 250px;
    margin-bottom: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.strategy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.strategy-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ff6b35;
}

.strategy-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Transparent Partnership Section */
.transparent-partnership {
    background: #1a1a2e;
    padding: 100px 0;
    color: white;
}

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

.partnership-container h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.partnership-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px);
}

.step-number {
    background: #ff6b35;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Every Step Section */
.every-step {
    background: #1a1a2e;
    padding: 100px 0;
    color: white;
}

.step-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.step-container h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.step-card-number {
    background: #ff6b35;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.8rem;
    margin: 0 auto 2rem;
}

.step-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1.5rem;
}

.step-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
}

.contact-button {
    display: block;
    margin: 0 auto;
    background: #ff6b35;
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-button:hover {
    background: #e55a2e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Contact Section */
.contact-section {
    background: #1a1a2e;
    padding: 100px 0 0;
    color: white;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.contact-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    opacity: 0.9;
}

.offices-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.office-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.office-info p {
    margin-bottom: 1rem;
    color: #ccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

.office-info strong {
    color: white;
    font-weight: 600;
}

.map-section img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(0, 0, 0, 0.1));
    opacity: 0.3;
    z-index: 0;
    background: url('./assets/bgf.jpg') center/cover;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-container,
    .roadmap-container,
    .strategies-container,
    .partnership-container,
    .step-container,
    .contact-container,
    .footer-container {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .roadmap-content {
        padding: 40px;
    }
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 3rem 0;
        gap: 2rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .roadmap-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 40px;
    }
    
    .strategies-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-container,
    .roadmap-container,
    .strategies-container,
    .partnership-container,
    .step-container,
    .contact-container,
    .footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .roadmap-text h1,
    .strategies-container h2,
    .partnership-container h2,
    .step-container h2,
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .roadmap-content {
        padding: 30px;
        margin: 0 10px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 480px) {
    .nav-container,
    .roadmap-container,
    .strategies-container,
    .partnership-container,
    .step-container,
    .contact-container,
    .footer-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .roadmap-text h1,
    .strategies-container h2,
    .partnership-container h2,
    .step-container h2,
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .roadmap-content {
        padding: 25px;
    }
    
    .strategy-item h3,
    .step-content h3,
    .step-card h3 {
        font-size: 1.3rem;
    }
    
    .step-number,
    .step-card-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .step-card {
        padding: 2rem;
    }
    
    .contact-button,
    .detail-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
}