/* Lynx Contracting - Styles */
:root {
    --forest: #1B4332;
    --forest-light: #2D6A4F;
    --sage: #74C69D;
    --sage-light: #B7E4C7;
    --stone: #8B7D6B;
    --sand: #F5F0E8;
    --cream: #FEFAE0;
    --dark: #081C15;
    --text: #333D29;
    --text-light: #656D4A;
    --white: #ffffff;
}

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

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--sand);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

.accent {
    color: var(--forest-light);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 40px;
    background: rgba(27, 67, 50, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.lynx-logo {
    width: 36px;
    height: 36px;
    color: var(--sage);
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--sage);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,28,21,0.85) 0%, rgba(27,67,50,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 120px 40px 80px;
    animation: fadeUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: var(--sage);
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(38px, 7vw, 68px);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero h1 .accent {
    color: var(--sage);
}

.hero-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--sage);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--sage-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(116,198,157,0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--forest);
}

.btn-light:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 18px;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--forest-light);
    margin-bottom: 15px;
}

/* About */
.about {
    padding: 100px 0;
    background: var(--sand);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.experience-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--forest);
    color: var(--white);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(27,67,50,0.3);
}

.exp-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 2px solid var(--sage-light);
}

.astat {
    text-align: center;
}

.astat-num {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--forest);
}

.astat-label {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: clamp(26px, 4vw, 38px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--sand);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.service-visual {
    height: 180px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-visual img {
    transform: scale(1.05);
}

.service-icon {
    font-size: 44px;
    padding: 30px 25px 0;
}

.service-info {
    padding: 20px 25px 30px;
}

.service-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-info p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Why Us */
.why-us {
    padding: 100px 0;
    background: var(--sand);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-content h2 {
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 35px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-item {
    display: flex;
    gap: 18px;
}

.why-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--forest);
    color: var(--white);
    border-radius: 50%;
    font-size: 16px;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--dark);
}

.why-item p {
    font-size: 15px;
    color: var(--text-light);
}

.why-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* CTA Bar */
.cta-bar {
    background: var(--forest);
    padding: 70px 0;
    text-align: center;
}

.cta-content h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 18px;
    color: var(--sage-light);
    margin-bottom: 35px;
}

/* Contact */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 25px;
    background: var(--sand);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-card:hover {
    background: var(--sage-light);
    transform: translateX(5px);
}

.cc-icon {
    font-size: 26px;
}

.contact-card strong {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-card span {
    font-size: 16px;
    color: var(--dark);
    font-weight: 700;
}

.contact-form-box {
    background: var(--sand);
    padding: 45px;
    border-radius: 12px;
}

.contact-form-box h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--dark);
}

.contact-form-box form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea {
    padding: 14px 16px;
    border: 2px solid var(--cream);
    border-radius: 8px;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 15px;
    background: var(--white);
    transition: border-color 0.3s;
}

.contact-form-box input:focus,
.contact-form-box select:focus,
.contact-form-box textarea:focus {
    outline: none;
    border-color: var(--sage);
}

.contact-form-box button {
    align-self: flex-start;
    margin-top: 5px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 25px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 2px;
}

.footer-brand .lynx-logo {
    width: 30px;
    height: 30px;
    color: var(--sage);
}

.footer-social p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .experience-badge {
        width: 90px;
        height: 90px;
    }
    .exp-num {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    .nav-links {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: rgba(27,67,50,0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
    }
    .nav-links.active {
        transform: translateY(0);
    }
    .nav-toggle {
        display: flex;
    }
    .hero-content {
        padding: 100px 20px 60px;
    }
    .hero-cta {
        flex-direction: column;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .form-group {
        grid-template-columns: 1fr;
    }
    .contact-form-box {
        padding: 30px;
    }
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    section {
        padding: 60px 0;
    }
    .about-stats {
        justify-content: center;
    }
}
