/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo a {
    display: block;
    text-decoration: none;
}

.logo h2 {
    color: #000000;
    font-weight: 700;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.logo a:hover h2 {
    color: #eaaa0e;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: #eaaa0e;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: #eaaa0e;
    background: rgba(234, 170, 14, 0.08);
}

.nav-link:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: #fff;
    background: linear-gradient(135deg, #eaaa0e 0%, #d29a0c 100%);
    box-shadow: 0 4px 12px rgba(234, 170, 14, 0.3);
}

.nav-link.active::before {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Company Story */
.company-story {
    padding: 80px 0;
    background: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.story-image {
    display: flex;
    justify-content: center;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background: #ddd;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}

/* Mission & Values */
.mission-values {
    padding: 80px 0;
}

.mission-values h2 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: #666;
    font-size: 1rem;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-section h2 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #555;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.member-photo {
    margin-bottom: 20px;
}

.placeholder-photo {
    width: 150px;
    height: 150px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.team-member h3 {
    color: #000000;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.member-title {
    color: #eaaa0e;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: #666;
    font-size: 0.95rem;
}

/* Certifications */
.certifications {
    padding: 80px 0;
}

.certifications h2 {
    color: #000000;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cert-item {
    text-align: center;
    padding: 30px 20px;
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cert-item h3 {
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.cert-item p {
    color: #666;
}

/* About CTA */
.about-cta {
    padding: 80px 0;
    background: #000000;
    color: white;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: #eaaa0e;
    color: #000000;
}

.cta-button.primary:hover {
    background: #d29a0c;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #000000;
}

/* Footer */
.footer {
    background: #100e0a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 150px repeat(3, 1fr) 150px;
    gap: 40px;
    align-items: start;
}

.footer-logo-left,
.footer-logo-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    width: 180px;
    height: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #eaaa0e;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #eaaa0e;
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.15);
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #000000;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 10px 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-text h2,
    .mission-values h2,
    .team-section h2,
    .certifications h2,
    .about-cta h2 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .certs-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo-left,
    .footer-logo-right {
        display: none;
    }
}
