/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
header {
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    height: 50px;
    width: auto;
}

/* Navigation Menu */
.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #667eea;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* What We Do Section */
.what-we-do {
    background-color: #ffffff;
    padding: 80px 0;
}

.what-we-do h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.what-we-do h3 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 25px;
    text-align: center;
}

.what-we-do > .container > p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.feature {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    font-size: 1rem;
}

/* Logo Bar */
.logo-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 40px 0;
    border-top: 2px solid #e9ecef;
    margin-top: 40px;
}

.logo-bar img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: grayscale(50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-bar img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Trip-Wire Offer Section */
.trip-wire-offer {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.trip-wire-offer h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.trip-wire-offer h3 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 25px;
    text-align: center;
}

.trip-wire-offer p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #555;
}

.trip-wire-offer ul {
    max-width: 900px;
    margin: 0 auto 40px;
    list-style: none;
}

.trip-wire-offer li {
    font-size: 1.05rem;
    color: #555;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.trip-wire-offer li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Comprehensive Offer Section */
.comprehensive-offer {
    background-color: #ffffff;
    padding: 80px 0;
}

.comprehensive-offer h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.comprehensive-offer h3 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 25px;
    text-align: center;
}

.comprehensive-offer h4 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 40px auto 20px;
    max-width: 900px;
}

.comprehensive-offer p {
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #555;
}

.comprehensive-offer ul {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
}

.comprehensive-offer li {
    font-size: 1.05rem;
    color: #555;
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
}

.comprehensive-offer li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.3rem;
}

/* About Us Section */
.about-us {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.about-us h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.about-us h3 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 50px;
    text-align: center;
}

/* Team Grid */
.team {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #667eea;
}

.team-member h4 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.linkedin-link:hover {
    opacity: 0.7;
}

.linkedin-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.team-member .role {
    font-size: 1.1rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 15px;
}

.contact-email {
    margin-top: 30px;
}

.contact-email a {
    font-size: 1.4rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #5568d3;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-cta {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.7;
    font-weight: 500;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: #667eea;
    color: white;
}

.btn-primary:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.trip-wire-offer .btn {
    display: block;
    max-width: 300px;
    margin: 0 auto;
}

/* Workflow Diagram */
.workflow-diagram {
    margin: 40px auto;
    max-width: 1000px;
    text-align: center;
}

.workflow-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: white;
    padding: 20px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav {
        gap: 20px;
    }
    
    .main-nav a {
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .what-we-do h2,
    .trip-wire-offer h2,
    .comprehensive-offer h2,
    .about-us h2 {
        font-size: 2rem;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .team {
        grid-template-columns: 1fr;
    }
    
    .logo-bar {
        gap: 30px;
    }
    
    .logo-bar img {
        height: 40px;
    }
}
