* {
    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;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    z-index: 10000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #ff6b35;
    color: white;
}

.cookie-btn.accept:hover {
    background: #e55a2e;
}

.cookie-btn.decline {
    background: transparent;
    color: white;
    border: 1px solid #ccc;
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 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;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

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

.hero-content {
    max-width: 800px;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 600px;
}

.cta-button {
    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;
}

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

/* About Section */
.about {
    background: #1a1a2e;
    padding: 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
    align-items: center;
}

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

.about-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    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);
}

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

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

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

.contact 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: 4rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 900px;
}

.offices-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

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

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

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

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

/* Services Section */
.services {
    background: #1a1a2e;
    padding: 100px 0;
    color: white;
}

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

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

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-card.center-card {
    background: #ff6b35;
    border: none;
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

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

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

.service-card.center-card h3 {
    color: white;
}

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

.detail-button-center {
    display: block;
    margin: 0 auto 6rem;
    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;
}

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

/* Success Path */
.success-path {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    margin: 6rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.path-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.path-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

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

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
}

.step-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Strategic Section */
.strategic-section {
    margin-top: 8rem;
}

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

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

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

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

/* Why Choose Us */
.why-choose {
    background: #1a1a2e;
    padding: 100px 0;
    color: white;
}

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

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

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

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.reason {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

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

.reason-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.8rem;
}

.reason-content p {
    color: #ccc;
    line-height: 1.7;
    font-size: 1.1rem;
}

.why-choose-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
}

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

.footer::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
    background: url('./assets/bgf.jpg') center/cover;
    opacity: 0.3;
    z-index: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 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,
    .hero-container,
    .about-container,
    .contact-container,
    .services-container,
    .why-choose-container,
    .footer-container {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .strategy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@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);
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin: 60px 30px;
        padding: 40px;
    }
    
    .offices-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .success-path {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }
    
    .strategy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-content {
        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,
    .hero-container,
    .contact-container,
    .services-container,
    .why-choose-container,
    .footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title,
    .about-text h2,
    .contact h2,
    .why-choose-text h2,
    .strategic-section h2 {
        font-size: 2.2rem;
    }
    
    .path-content h3 {
        font-size: 1.8rem;
    }
    
    .about-content {
        margin: 40px 20px;
        padding: 30px;
    }
    
    .success-path {
        margin: 4rem 0;
        padding: 2rem;
    }
    
    .cookie-popup {
        left: 20px;
        right: 20px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-container,
    .hero-container,
    .contact-container,
    .services-container,
    .why-choose-container,
    .footer-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .section-title,
    .about-text h2,
    .contact h2,
    .why-choose-text h2,
    .strategic-section h2 {
        font-size: 1.8rem;
    }
    
    .about-content {
        margin: 30px 15px;
        padding: 25px;
    }
    
    .service-card,
    .strategy-card {
        padding: 2rem;
    }
    
    .success-path {
        padding: 1.5rem;
    }
    
    .path-steps {
        gap: 2rem;
    }
    
    .step-number,
    .reason-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .offices-info {
        gap: 2rem;
    }
}