/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-highlight {
    color: #2e7d32;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-primary, .btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #2e7d32;
    color: white;
}

.btn-primary:hover {
    background-color: #1b5e20;
}

.btn-outline {
    border: 1px solid #2e7d32;
    color: #2e7d32;
    margin-right: 10px;
}

.btn-outline:hover {
    background-color: #f5f5f5;
}

/* Header */
header {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 100px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.primary-button, .secondary-button {
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
}

.primary-button {
    background-color: #2e7d32;
    color: white;
}

.secondary-button {
    border: 1px solid #2e7d32;
    color: #2e7d32;
}

/* Features Section */
.features {
    padding: 80px 0;
}

h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.feature-list li:before {
    content: "✓";
    color: #2e7d32;
    position: absolute;
    left: 0;
}

/* WASP App Section */
.wasp-app {
    padding: 60px 0;
    background: #f8f9fa;
}

.wasp-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.wasp-description {
    flex: 1;
    padding-right: 40px;
}

.wasp-features {
    margin: 20px 0;
    line-height: 1.6;
    font-size: 18px;
}

.wasp-download {
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    margin-top: 20px;
    background-color: #2e7d32;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.wasp-download:hover {
    background-color: #1b5e20;
    transform: translateY(-2px);
}

.wasp-qr {
    flex: 0 0 300px;
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.wasp-qr img {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.qr-caption {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.social-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.contact-card {
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact-card i,
.social-icon {
    font-size: 2.5rem;
    width: 40px;
    height: 40px;
}

.x-social-card .social-icon {
    width: 40px;
    height: 40px;
    display: block;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    min-height: 40px;
}

/* Remove the old CSS-based X logo styles */

.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.x-social {
    background: linear-gradient(135deg, #000000 0%, #1DA1F2 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.x-social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.telegram {
    background: linear-gradient(135deg, #0088CC 0%, #00aced 100%);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.telegram {
    background: linear-gradient(135deg, #0088CC 0%, #00aced 100%);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.social-icon-small {
    width: 20px;
    height: 20px;
    display: block;
}

.icon-wrapper-small {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Specific social link backgrounds */
.social-links a[href*="t.me"] {
    background: linear-gradient(135deg, #0088CC 0%, #00aced 100%);
}

.social-links a[href*="youtube"] {
    background: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
}

/* Custom X logo for footer */
.x-social-link {
    background: linear-gradient(135deg, #000000 0%, #1DA1F2 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Remove any remaining old X logo styles */

.legal-links {
    list-style: none;
    padding: 0;
}

.legal-links li {
    margin-bottom: 10px;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
}

.legal-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
}

/* Responsive */
@media (max-width: 768px) {
    .wasp-content {
        flex-direction: column;
        gap: 30px;
    }
    .wasp-description {
        padding-right: 0;
        text-align: center;
    }
    .wasp-qr {
        flex: 1;
        width: 100%;
    }
    
    .nav-content {
        display: none;
    }
    
    header h1 {
        font-size: 2rem;
    }

    .cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-outline {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
