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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    color: #000;
    background-color: #fff;
}

html {
    scroll-behavior: smooth;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 50;
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.nav-links {
    display: none;
    gap: 2rem;
    font-size: 0.875rem;
    font-weight: 300;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #ca8a04;
}

.hero {
    padding: 8rem 1.5rem 5rem;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title span {
    display: block;
    color: #ca8a04;
}

.hero-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: #374151;
    line-height: 1.75;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-title {
    position: absolute;
    top: -3rem;
    left: 0;
    z-index: 20;
    padding: 0 1rem;
}

.hero-image-title h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-image-title h2 {
        font-size: 2.25rem;
    }
}

.hero-image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 10px 30px rgba(0, 0, 0, 0.3),
                0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.35),
                0 15px 40px rgba(0, 0, 0, 0.4),
                0 25px 70px rgba(0, 0, 0, 0.25);
}

.section {
    padding: 5rem 1.5rem;
}

.section-dark {
    background-color: #000;
    color: #fff;
}

.section-gray {
    background-color: #f9fafb;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
}

.about-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-text {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.75;
    color: #d1d5db;
    margin-bottom: 1.5rem;
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vision-box, .mission-box {
    border: 1px solid rgba(202, 138, 4, 0.3);
    padding: 2rem;
}

.vision-box h4, .mission-box h4 {
    color: #ca8a04;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.vision-box p, .mission-box p {
    font-weight: 300;
    color: #d1d5db;
}

.companies-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.company-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: border-color 0.3s;
}

.company-card:hover {
    border-color: rgba(202, 138, 4, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    animation: fadeInUp 1s ease-out;
    animation-fill-mode: both;
}

.company-card:nth-child(1) .company-image {
    animation-delay: 0.2s;
}

.company-card:nth-child(2) .company-image {
    animation-delay: 0.4s;
}

.company-content {
    padding: 3rem;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.company-logo {
    width: 4rem;
    height: 4rem;
    object-fit: contain;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 300;
}

.company-location {
    font-size: 0.875rem;
    color: #4b5563;
    font-weight: 300;
}

.company-description {
    font-size: 1.125rem;
    font-weight: 300;
    color: #374151;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(202, 138, 4, 0.3);
    color: #374151;
}

.expertise-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.expertise-item {
    text-align: center;
}

.expertise-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    border: 1px solid #ca8a04;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expertise-icon svg {
    width: 2rem;
    height: 2rem;
    stroke: #ca8a04;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.expertise-title {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
}

.expertise-description {
    font-size: 0.875rem;
    font-weight: 300;
    color: #4b5563;
    line-height: 1.75;
}

.quote-section {
    padding: 5rem 1.5rem;
}

.quote-container {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
}

.quote-text {
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .quote-text {
        font-size: 2.25rem;
    }
}

.quote-author {
    color: #ca8a04;
    font-weight: 300;
}

.contact-grid {
    display: grid;
    gap: 4rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-intro {
    font-size: 1.125rem;
    font-weight: 300;
    color: #d1d5db;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-location h4 {
    color: #ca8a04;
    font-weight: 300;
    margin-bottom: 1rem;
}

.contact-location p {
    font-weight: 300;
    color: #d1d5db;
    margin-bottom: 0.75rem;
}

.contact-links {
    font-weight: 300;
    color: #d1d5db;
    font-size: 0.875rem;
}

.contact-links a {
    display: block;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
    margin-bottom: 0.25rem;
}

.contact-links a:hover {
    color: #ca8a04;
}

footer {
    padding: 2rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-text {
    font-size: 0.875rem;
    font-weight: 300;
    color: #4b5563;
}
