/*
Theme Name: Madaia Theme
Theme URI: https://madaiaagents.com.br/
Author: Manus
Author URI: https://madaiaagents.com.br/
Description: Tema personalizado para Madaia Agents com seção de blog
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: madaia-theme
*/

/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: #e74c3c;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff6b6b;
}

img {
    max-width: 100%;
    height: auto;
}

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: #e74c3c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #ff6b6b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #e74c3c;
}

.btn-secondary:hover {
    background-color: rgba(231, 76, 60, 0.1);
    color: #ffffff;
    transform: translateY(-2px);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #e74c3c;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-padding {
    padding: 100px 0;
}

/* Header */
.site-header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

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

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img, .logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.main-navigation {
    display: flex;
}

.main-navigation ul {
    display: flex;
    list-style: none;
}

.main-navigation li {
    margin-left: 25px;
    position: relative;
}

.main-navigation a {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
}

.main-navigation a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e74c3c;
    transition: width 0.3s ease;
}

.main-navigation a:hover:after,
.main-navigation .current-menu-item a:after {
    width: 100%;
}

.header-cta {
    margin-left: 20px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    background-color: #121212;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: #e74c3c;
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    z-index: 1;
}

/* Stats Section */
.stats-section {
    background-color: #1a1a1a;
    padding: 80px 0;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px;
    background-color: #242424;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 1.1rem;
    color: #ffffff;
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
}

.solutions-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.solution-item {
    width: calc(20% - 24px);
    min-width: 200px;
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: #242424;
}

.solution-icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.solution-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.solution-description {
    color: #cccccc;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #1a1a1a;
    padding: 100px 0;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    width: calc(50% - 15px);
    min-width: 300px;
    background-color: #242424;
    border-radius: 10px;
    padding: 30px;
    position: relative;
}

.testimonial-content {
    font-style: italic;
    color: #cccccc;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    color: #e74c3c;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.testimonial-author-title {
    font-size: 0.9rem;
    color: #e74c3c;
}

/* For Whom Section */
.for-whom-section {
    padding: 100px 0;
}

.for-whom-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.for-whom-item {
    width: calc(20% - 16px);
    min-width: 180px;
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.for-whom-item:hover {
    transform: scale(1.05);
    background-color: #242424;
}

.for-whom-icon {
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 15px;
}

.for-whom-text {
    color: #ffffff;
    font-weight: 500;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #1a1a1a;
    padding: 100px 0;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    counter-reset: step;
}

.step-item {
    width: calc(25% - 30px);
    min-width: 220px;
    margin-bottom: 40px;
    position: relative;
    padding-left: 60px;
}

.step-item:before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    background-color: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.step-description {
    color: #cccccc;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    width: calc(25% - 22.5px);
    min-width: 250px;
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.pricing-period {
    font-size: 1rem;
    color: #cccccc;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #333333;
    color: #cccccc;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    margin-top: 40px;
    color: #cccccc;
    font-size: 0.9rem;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
}

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

.blog-card {
    background-color: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #999999;
}

.blog-meta-item {
    display: flex;
    align-items: center;
}

.blog-meta-icon {
    margin-right: 5px;
    color: #e74c3c;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-title a {
    color: #ffffff;
}

.blog-title a:hover {
    color: #e74c3c;
}

.blog-excerpt {
    color: #cccccc;
    margin-bottom: 20px;
}

.blog-readmore {
    display: inline-flex;
    align-items: center;
    color: #e74c3c;
    font-weight: 500;
}

.blog-readmore-icon {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-readmore:hover .blog-readmore-icon {
    transform: translateX(5px);
}

.blog-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 5px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.page-numbers.current {
    background-color: #e74c3c;
}

.page-numbers:hover {
    background-color: #e74c3c;
    color: #ffffff;
}

/* Single Post */
.single-post-section {
    padding: 180px 0 100px;
}

.single-post-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

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

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    color: #999999;
    font-size: 0.9rem;
}

.post-meta-item {
    display: flex;
    align-items: center;
}

.post-meta-icon {
    margin-right: 5px;
    color: #e74c3c;
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
}

.post-content {
    color: #cccccc;
    line-height: 1.8;
}

.post-content p,
.post-content ul,
.post-content ol {
    margin-bottom: 20px;
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #ffffff;
}

.post-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #e74c3c;
}

.post-content a {
    color: #e74c3c;
    text-decoration: underline;
}

.post-content a:hover {
    color: #ff6b6b;
}

.post-content blockquote {
    border-left: 4px solid #e74c3c;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #ffffff;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

.post-tags {
    margin: 40px 0;
}

.post-tag {
    display: inline-block;
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 5px 12px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.post-tag:hover {
    background-color: #e74c3c;
    color: #ffffff;
}

.post-share {
    margin-bottom: 40px;
}

.post-share-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.post-share-buttons {
    display: flex;
    gap: 10px;
}

.post-share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.post-share-button:hover {
    background-color: #e74c3c;
    color: #ffffff;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    padding: 20px 0;
    border-top: 1px solid #333333;
    border-bottom: 1px solid #333333;
}

.post-navigation-link {
    max-width: 48%;
}

.post-navigation-label {
    display: block;
    font-size: 0.9rem;
    color: #999999;
    margin-bottom: 5px;
}

.post-navigation-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
}

.post-navigation-title:hover {
    color: #e74c3c;
}

.related-posts {
    margin-top: 60px;
}

.related-posts-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Comments */
.comments-area {
    margin-top: 60px;
}

.comments-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
}

.comment-list {
    list-style: none;
}

.comment {
    margin-bottom: 30px;
}

.comment-body {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 25px;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.comment-author {
    display: flex;
    align-items: center;
}

.comment-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.comment-author .fn {
    font-weight: 600;
    color: #ffffff;
    font-style: normal;
}

.comment-metadata {
    font-size: 0.85rem;
    color: #999999;
}

.comment-content {
    color: #cccccc;
}

.comment-content p {
    margin-bottom: 15px;
}

.reply {
    margin-top: 15px;
}

.comment-reply-link {
    color: #e74c3c;
    font-weight: 500;
}

.comment-form {
    margin-top: 40px;
}

.comment-form-comment label {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin-bottom: 20px;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: #242424;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1rem;
}

.comment-form textarea {
    height: 150px;
    resize: vertical;
}

.form-submit {
    margin-top: 20px;
}

.submit {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit:hover {
    background-color: #ff6b6b;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.widget {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.widget-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #e74c3c;
}

.widget_search form {
    display: flex;
}

.widget_search input[type="search"] {
    flex: 1;
    padding: 12px 15px;
    background-color: #242424;
    border: none;
    border-radius: 5px 0 0 5px;
    color: #ffffff;
}

.widget_search button {
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

.widget_recent_entries ul,
.widget_categories ul,
.widget_archive ul,
.widget_tag_cloud .tagcloud {
    list-style: none;
}

.widget_recent_entries li,
.widget_categories li,
.widget_archive li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333333;
}

.widget_recent_entries li:last-child,
.widget_categories li:last-child,
.widget_archive li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget_recent_entries a,
.widget_categories a,
.widget_archive a {
    color: #cccccc;
}

.widget_recent_entries a:hover,
.widget_categories a:hover,
.widget_archive a:hover {
    color: #e74c3c;
}

.widget_tag_cloud .tagcloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.widget_tag_cloud a {
    display: inline-block;
    background-color: #242424;
    color: #cccccc;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem !important;
    transition: all 0.3s ease;
}

.widget_tag_cloud a:hover {
    background-color: #e74c3c;
    color: #ffffff;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

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

.contact-info {
    color: #cccccc;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-description {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #e74c3c;
}

.contact-text {
    color: #ffffff;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background-color: #e74c3c;
    color: #ffffff;
}

.contact-form {
    background-color: #1a1a1a;
    border-radius: 10px;
    padding: 30px;
}

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

.form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: #242424;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1rem;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #999999;
    text-align: center;
}

/* Footer */
.site-footer {
    background-color: #121212;
    padding: 80px 0 30px;
    border-top: 1px solid #333333;
}

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

.footer-logo {
    display: block;
    margin-bottom: 20px;
    height: 50px;
    width: auto;
}

.footer-about {
    color: #cccccc;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background-color: #e74c3c;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #cccccc;
}

.footer-links a:hover {
    color: #e74c3c;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #cccccc;
}

.footer-contact-icon {
    margin-right: 10px;
    color: #e74c3c;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #1a1a1a;
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background-color: #e74c3c;
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    color: #999999;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .solution-item {
        width: calc(25% - 22.5px);
    }
    
    .for-whom-item {
        width: calc(25% - 15px);
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .solution-item {
        width: calc(33.33% - 20px);
    }
    
    .for-whom-item {
        width: calc(33.33% - 13.33px);
    }
    
    .step-item {
        width: calc(50% - 15px);
    }
    
    .pricing-card {
        width: calc(50% - 15px);
    }
    
    .single-post-container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 130px 0 60px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .solution-item {
        width: calc(50% - 15px);
    }
    
    .for-whom-item {
        width: calc(50% - 10px);
    }
    
    .testimonial-card {
        width: 100%;
    }
    
    .step-item {
        width: 100%;
    }
    
    .pricing-card {
        width: 100%;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .post-navigation-link {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .solution-item {
        width: 100%;
    }
    
    .for-whom-item {
        width: 100%;
    }
    
    .post-title {
        font-size: 2rem;
    }
}

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

.animate-fadeIn {
    animation: fadeIn 0.8s ease forwards;
}

/* Clean Design Enhancements */
body {
    font-weight: 400;
    letter-spacing: 0.01em;
}

.container {
    padding: 0 20px;
}

.btn {
    letter-spacing: 0.03em;
    box-shadow: none;
    font-weight: 500;
}

.section-title {
    letter-spacing: -0.01em;
}

.site-header {
    backdrop-filter: blur(10px);
}

.main-navigation a {
    letter-spacing: 0.02em;
}

.solution-item,
.testimonial-card,
.for-whom-item,
.pricing-card,
.blog-card,
.widget,
.contact-form {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.solution-item:hover,
.testimonial-card:hover,
.for-whom-item:hover,
.pricing-card:hover,
.blog-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

input, textarea, select {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Additional Responsive Improvements */
@media (max-width: 992px) {
    .site-logo img, .logo, .footer-logo {
        height: 40px;
    }
    
    .site-header {
        padding: 15px 0;
    }
}

@media (max-width: 768px) {
    .site-logo img, .logo, .footer-logo {
        height: 35px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #1a1a1a;
    z-index: 1001;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 15px;
}

.mobile-menu a {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #333333;
}

.mobile-menu a:hover {
    color: #e74c3c;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Accessibility Improvements */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #e74c3c;
    clip: auto !important;
    clip-path: none;
    color: #ffffff;
    display: block;
    font-size: 1rem;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #e74c3c;
    outline-offset: 2px;
}

/* Custom Logo Styles */
.logo, .footer-logo {
    max-width: 150px;
    height: auto;
}

@media (max-width: 576px) {
    .logo, .footer-logo {
        max-width: 120px;
    }
}
