/* Basic CSS for mock website */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header Styles */
header {
    background-color: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0066cc;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
}

.nav-menu a:hover {
    color: #0066cc;
}

.header-secondary {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    color: #666;
}

.header-actions {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
}

.search-bar {
    margin: 1rem 0;
    display: flex;
    gap: 1rem;
}

.search-bar input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 300px;
}

/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin: -2rem -2rem 2rem;
    padding: 4rem 2rem;
}

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

.lead {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.content-section {
    margin: 3rem 0;
}

.content-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.content-section h3 {
    color: #34495e;
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
}

.content-section p {
    margin-bottom: 1rem;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Image Placeholders */
.image-placeholder {
    background-color: #e9ecef;
    padding: 3rem 2rem;
    text-align: center;
    color: #6c757d;
    border-radius: 8px;
    margin: 1rem 0;
    font-style: italic;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #0066cc;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    color: #666;
}

/* Testimonials */
.testimonials {
    margin: 3rem 0;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.testimonial blockquote {
    font-style: italic;
    margin: 1rem 0;
    padding-left: 1rem;
    border-left: 3px solid #0066cc;
}

.testimonial cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: bold;
}

.logo-placeholder {
    background-color: #dee2e6;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    text-align: center;
    font-style: italic;
    color: #6c757d;
}

/* Products */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.product {
    border: 1px solid #dee2e6;
    padding: 2rem;
    border-radius: 8px;
}

.product h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature {
    text-align: center;
    padding: 1rem;
}

.feature .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Industries Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.industry-item {
    background-color: #f8f9fa;
    padding: 1.5rem;
    text-align: center;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.industry-item:hover {
    background-color: #e9ecef;
}

.industry-item .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Tour Cards */
.tour-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tour-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
}

.tour-card h3 {
    margin: 1rem 0;
    color: #2c3e50;
}

/* CTA Sections */
.cta-section {
    background-color: #f8f9fa;
    padding: 3rem;
    text-align: center;
    margin: 3rem -2rem;
    font-size: 1.25rem;
}

.partner-cta {
    text-align: center;
    padding: 3rem 0;
    background-color: #f8f9fa;
    margin: 3rem -2rem;
}

.partner-cta h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.footer-column li:hover {
    color: #3498db;
}

.footer-social {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
}

.footer-social span {
    cursor: pointer;
}

.footer-social span:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 1rem;
    border-top: 1px solid #34495e;
    text-align: center;
    font-size: 0.9rem;
    color: #95a5a6;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Sections specific to software page */
.trust-section {
    background-color: #f8f9fa;
    padding: 3rem;
    margin: 3rem -2rem;
    text-align: center;
}

.numbers {
    text-align: center;
    padding: 3rem 0;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    background-color: #f8f9fa;
    padding: 3rem;
    margin: 3rem -2rem;
}

.stats-section .stat {
    text-align: center;
}

.stats-section h3 {
    font-size: 2.5rem;
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.tours-section {
    margin: 3rem 0;
}

.tours-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.tours-section p {
    text-align: center;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    nav {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .stats-section {
        flex-direction: column;
        gap: 2rem;
    }
}