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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
}

/* Header */
header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 3rem;
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

header.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-image {
    height: 40px;
    width: auto;
    margin-bottom: 0.3rem;
}

.logo-tagline {
    font-size: 0.65rem;
    color: #A0753E;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 0.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

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

.nav-menu a:hover {
    color: #A0753E;
    opacity: 1;
}

.nav-cta {
    background: #A0753E;
    color: white !important;
    padding: 0.8rem 1.8rem;
    border-radius: 4px;
    opacity: 1 !important;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 0.3rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #333 !important;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
    opacity: 1 !important;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
    color: #00627B !important;
}

.nav-cta:hover {
    background: #8a6335;
    color: white !important;
}

/* Hero Section - Full Width with Overlay */
.hero {
    position: relative;
    height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 98, 123, 0.95) 0%, rgba(0, 77, 94, 0.95) 50%, rgba(0, 57, 68, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1100px;
    padding: 0 2rem;
}

.hero-label {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(160, 117, 62, 0.2);
    border: 1px solid #A0753E;
    border-radius: 50px;
    color: #A0753E;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-tagline {
    font-size: 1.8rem;
    color: #A0753E;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1.2rem 3rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-gold {
    background: #A0753E;
    color: white;
}

.btn-gold:hover {
    background: #8a6335;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(160, 117, 62, 0.4);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: #00627B;
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.7;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Companies Section */
.companies {
    padding: 7rem 3rem;
    background: white;
}

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

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-label {
    color: #A0753E;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    color: #00627B;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-description {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.8;
}

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

.company-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.company-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #A0753E;
    transition: height 0.4s;
}

.company-item:hover::before {
    height: 100%;
}

.company-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: #A0753E;
}

.company-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #00627B;
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-item h3 {
    font-size: 1.8rem;
    color: #00627B;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.company-type {
    color: #A0753E;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.company-item p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.company-item ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.company-item li {
    color: #666;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.company-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #A0753E;
    font-weight: 700;
}

.learn-more {
    color: #00627B;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.learn-more:hover {
    color: #A0753E;
    gap: 1rem;
}

/* Services Grid */
.services {
    position: relative;
    padding: 7rem 3rem;
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 98, 123, 0.95);
    z-index: 1;
}

.services > * {
    position: relative;
    z-index: 2;
}

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

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

.service-card:hover {
    background: rgba(160, 117, 62, 0.15);
    border-color: #A0753E;
    transform: scale(1.05);
}

.service-number {
    font-size: 2rem;
    color: #A0753E;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    opacity: 0.9;
    line-height: 1.7;
}

/* Impact Section */
.impact {
    padding: 7rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.impact-content h3 {
    font-size: 2.5rem;
    color: #00627B;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

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

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.impact-stat {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #A0753E;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.impact-stat .number {
    font-size: 2.5rem;
    color: #00627B;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.impact-stat .label {
    color: #666;
    font-size: 1rem;
}

/* CTA Section */
.final-cta {
    padding: 6rem 3rem;
    background: #A0753E;
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

/* Footer */
footer {
    background: #0a1929;
    color: white;
    padding: 5rem 3rem 2rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #A0753E;
}

.footer-brand .tagline {
    color: #A0753E;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer-brand p {
    color: #a0aec0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-column h4 {
    color: #A0753E;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 700;
}

.footer-column a, .footer-column p {
    color: #a0aec0;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #A0753E;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #718096;
}

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

.footer-links a {
    color: #718096;
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .companies-layout {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.3rem;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}
