/*
Theme Name: Woo2App
Description: A modern landing page theme for Woo2App product launch
Version: 1.0
Author: Webcodi
Author uri: https://webcodi.com
Template:     twentytwentyfive
*/

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

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

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #2563eb;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn {
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

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

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-number.blue { color: #2563eb; }
.stat-number.green { color: #16a34a; }
.stat-number.purple { color: #9333ea; }

.stat-label {
    color: #6b7280;
    font-size: 14px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #111827;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.feature-icon.blue { background: #dbeafe; color: #2563eb; }
.feature-icon.green { background: #dcfce7; color: #16a34a; }
.feature-icon.purple { background: #f3e8ff; color: #9333ea; }
.feature-icon.orange { background: #fed7aa; color: #ea580c; }
.feature-icon.yellow { background: #fef3c7; color: #d97706; }
.feature-icon.red { background: #fecaca; color: #dc2626; }
.feature-icon.indigo { background: #e0e7ff; color: #4f46e5; }
.feature-icon.teal { background: #ccfbf1; color: #0d9488; }
.feature-icon.pink { background: #fce7f3; color: #ec4899; }

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    background: white;
    padding: 80px 0;
}

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

.benefits-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #111827;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.benefit-content h4 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #111827;
}

.benefit-content p {
    color: #6b7280;
}

.benefits-visual {
    background: linear-gradient(135deg, #dbeafe 0%, #f3e8ff 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
}

.benefits-visual-icon {
    font-size: 96px;
    color: #2563eb;
    margin-bottom: 20px;
}

.benefits-visual h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111827;
}

.benefits-visual p {
    color: #6b7280;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2563eb 0%, #9333ea 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-section h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-badge {
    display: inline-block;
    background: #fbbf24;
    color: #92400e;
    padding: 12px 24px;
    border-radius: 24px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 32px;
}

/* Contact Form Section */
.contact-section {
    padding: 80px 0;
    background: #f9fafb;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111827;
}

.contact-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 30px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.form-subtitle {
    color: #6b7280;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background: #1d4ed8;
}

.form-disclaimer {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: #6b7280;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer p {
    color: #9ca3af;
    margin-bottom: 16px;
}

.footer-copyright {
    font-size: 14px;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.no-margin {
    margin: 0px !important;
}

details {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

summary {
  font-weight: bold;
  cursor: pointer;
  color: #0073aa;
  outline: none;
}

summary:hover {
  text-decoration: underline;
}

a {
  color: #0073aa;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin-top: 0.5rem;
  margin-left: 1.2rem;
}

/*Theme overriding*/

.home main {
    width: 100% !important;
    padding: 0px !important;
    margin: 0px !important;
}

.home h1.wp-block-post-title {
    display: none;
}

.home .entry-content {
    padding: 0px !important;
    margin: 0px !important;
    width: 100%;
}

.home section {
    width: 100% !important;
    /*padding: 0px !important;*/
    margin: 0px !important;
    max-width: 100% !important;
}

.home main .wp-block-group {margin: 0px !important;padding: 0px !important;}

header {
    position: sticky;
    top: 0px;
    z-index: 99;
    background: #fff;
}

header .wp-block-group.alignwide {
    max-width: 1200px;
    margin: 0px auto !important;
}

.home header nav {
}
footer {
    background: #000;
}

footer p {
    color: #b9b9b9;
    font-size: 15px;
}


h1 { font-size: 36px !important; }
h2 { font-size: 30px !important; }
h3 { font-size: 26px !important; }
h4 { font-size: 22px !important; }
h5 { font-size: 18px !important; }
h6 { font-size: 16px !important; }
p, ul li, ol li, a { font-size: 15px !important; }
