/* Levayen Website - Pure CSS Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #f9fafb;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation Left Side */
.nav-left {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-icon {
    font-size: 1.5rem;
}

.mobile-menu-content {
    padding: 0.5rem 0.5rem 0.75rem 0.5rem;
}

.mobile-menu-content > * + * {
    margin-top: 0.25rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

/* Navigation */
nav {
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: #6b7280;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link.active {
    color: #111827;
}

.mobile-menu-button {
    display: flex;
    align-items: center;
    color: #6b7280;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-button {
        display: none;
    }
}

.mobile-menu {
    display: none;
    background-color: white;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu-link {
    display: block;
    color: #6b7280;
    text-decoration: none;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.mobile-menu-link:hover {
    color: #2563eb;
}

.mobile-menu-link.active {
    color: #111827;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #2563eb, #9333ea);
    color: white;
    padding: 5rem 0;
}

.hero-content {
    text-align: center;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: white;
    color: #2563eb;
}

.btn-primary:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: #2563eb;
}

/* Buttons */
.btn-blue {
    background-color: #2563eb;
    color: white;
}

.btn-blue:hover {
    background-color: #1d4ed8;
}

.btn-dark {
    background-color: #111827;
    color: white;
}

.btn-dark:hover {
    background-color: #1f2937;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-gray {
    background-color: #f9fafb;
}

.section-white {
    background-color: white;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 4rem;
    text-align: center;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.grid-3 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Cards */
.card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 2rem;
}

.card-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.card-icon-blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.card-icon-green {
    background-color: #d1fae5;
    color: #10b981;
}

.card-icon-purple {
    background-color: #e9d5ff;
    color: #9333ea;
}

.card-icon-orange {
    background-color: #fed7aa;
    color: #f97316;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-align: center;
}

.card-description {
    color: #6b7280;
    text-align: center;
}

/* Service Cards */
.service-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Portfolio Items */
.portfolio-item {
    background-color: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.portfolio-item:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.portfolio-overlay-content {
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay-content {
    opacity: 1;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.portfolio-category {
    font-size: 0.875rem;
    font-weight: 600;
}

.portfolio-date {
    font-size: 0.875rem;
    color: #6b7280;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.portfolio-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    background-color: #f3f4f6;
    color: #374151;
}

.portfolio-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portfolio-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.portfolio-link:hover {
    color: #1d4ed8;
}

.portfolio-links {
    display: flex;
    gap: 0.5rem;
}

.portfolio-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.portfolio-links a:hover {
    color: #2563eb;
}

/* Pricing */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pricing-toggle button {
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 9999px;
    width: 4rem;
    height: 2rem;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pricing-toggle button::after {
    content: '';
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: white;
    top: 0.25rem;
    left: 2.25rem;
    transition: transform 0.3s;
}

.pricing-toggle button.annual::after {
    transform: translateX(-1.75rem);
}

.pricing-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.pricing-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    background-color: #2563eb;
    color: white;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fbbf24;
    color: #111827;
    padding: 0.25rem 0.75rem;
    border-radius: 0 0.5rem 0 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-content {
    padding: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.pricing-features .icon {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.check-icon {
    color: #10b981;
}

.x-icon {
    color: #d1d5db;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 6rem;
}

.form-checkbox {
    margin-right: 0.75rem;
}

.form-submit {
    width: 100%;
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit:hover {
    background-color: #1d4ed8;
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-content p {
    color: #6b7280;
}

.contact-link {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #1d4ed8;
}

/* FAQ */
.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.faq-button {
    width: 100%;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-button:hover {
    background-color: #f9fafb;
}

.faq-button h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-icon {
    color: #6b7280;
    transition: transform 0.3s;
}

.faq-button.active .faq-icon {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1rem;
    display: none;
}

.faq-content.show {
    display: block;
}

/* Blog */
.blog-featured {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.blog-featured:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.blog-featured-image {
    position: relative;
    height: 16rem;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #2563eb;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.blog-featured-content {
    padding: 2rem;
}

.blog-author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-author img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.blog-author-info p {
    font-weight: 600;
}

.blog-author-info .date {
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-featured-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-featured-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.blog-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.blog-tag-blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.blog-tag-green {
    background-color: #d1fae5;
    color: #10b981;
}

.blog-tag-purple {
    background-color: #e9d5ff;
    color: #9333ea;
}

.blog-post {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.blog-post:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.blog-post-image {
    height: 12rem;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.blog-post-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-section {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter {
    background-color: #2563eb;
    color: white;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
}

.newsletter-button {
    background-color: white;
    color: #2563eb;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-button:hover {
    background-color: #f3f4f6;
}

.recent-posts {
    list-style: none;
}

.recent-post {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.recent-post h4:hover {
    color: #2563eb;
}

.recent-post .date {
    font-size: 0.875rem;
    color: #6b7280;
}

.categories {
    list-style: none;
}

.category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    color: #374151;
    text-decoration: none;
    transition: color 0.3s;
}

.category:hover {
    color: #2563eb;
}

.category-count {
    color: #6b7280;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
}

/* Filter Section */
.filter-section {
    padding: 2rem 0;
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    background-color: #e5e7eb;
    color: #374151;
}

.filter-btn:hover {
    background-color: #d1d5db;
}

.filter-btn.active {
    background-color: #2563eb;
    color: white;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Portfolio Categories */
.portfolio-category-blue {
    color: #2563eb;
}

.portfolio-category-green {
    color: #10b981;
}

.portfolio-category-purple {
    color: #9333ea;
}

.portfolio-category-orange {
    color: #f97316;
}

.portfolio-category-red {
    color: #dc2626;
}

.portfolio-category-teal {
    color: #14b8a6;
}

/* Portfolio Overlay */
.portfolio-overlay-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.portfolio-overlay-text {
    font-size: 0.875rem;
    color: white;
}

/* Privacy Content */
.privacy-content {
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.8;
    color: #374151;
}

.subsection-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.privacy-list {
    list-style: disc;
    padding-right: 2rem;
    margin-bottom: 2rem;
}

.privacy-list li {
    margin-bottom: 0.5rem;
}

.contact-info-box {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
}

.contact-info-box p {
    color: #374151;
    margin-bottom: 0.5rem;
}

/* FAQ Categories */
.faq-category {
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-button {
    width: 100%;
    padding: 1rem 1.5rem;
    background: none;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-button:hover {
    background-color: #f9fafb;
}

.faq-button h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    color: #111827;
}

.faq-icon {
    color: #6b7280;
    transition: transform 0.3s;
}

.faq-icon.active {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1rem;
    display: none;
    color: #6b7280;
    line-height: 1.6;
}

.faq-content.show {
    display: block;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pricing-toggle-button {
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 9999px;
    width: 4rem;
    height: 2rem;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pricing-toggle-button::after {
    content: '';
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: white;
    top: 0.25rem;
    left: 2.25rem;
    transition: transform 0.3s;
}

.pricing-toggle-button.toggle-annual::after {
    transform: translateX(-1.75rem);
}

.pricing-toggle-button .toggle-monthly {
    transform: translateX(0);
}

.pricing-toggle-button .toggle-annual {
    transform: translateX(-1.75rem);
}

/* Pricing Features */
.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.pricing-feature .icon {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.pricing-btn {
    width: 100%;
    text-align: center;
}

.pricing-period {
    color: #6b7280;
    font-weight: 400;
}

/* Blog Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .blog-layout {
        grid-template-columns: 2fr 1fr;
    }
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Blog Author */
.blog-author {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-author img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    margin-right: 0.75rem;
}

.blog-author-info p {
    font-weight: 600;
}

.blog-author-info .date {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 400;
}

/* Blog Read More */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-read-more:hover {
    color: #1d4ed8;
}

.blog-read-more i {
    margin-right: 0.5rem;
}

[dir="rtl"] .blog-read-more i {
    margin-right: 0;
    margin-left: 0.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination-nav {
    display: flex;
    gap: 0.5rem;
}

.pagination-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    background-color: white;
    color: #374151;
}

.pagination-btn:hover {
    background-color: #f3f4f6;
}

.pagination-btn.active {
    background-color: #2563eb;
    color: white;
}

/* Testimonials */
.testimonial {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    margin-right: 1rem;
}

.testimonial-author h4 {
    font-weight: 600;
}

.testimonial-author .title {
    font-size: 0.875rem;
    color: #6b7280;
}

.rating {
    display: flex;
    margin-bottom: 1rem;
}

.star {
    color: #fbbf24;
}

.testimonial-content {
    color: #6b7280;
}

/* Footer */
footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}

/* Language Switcher */
.language-switcher {
    position: fixed;
    top: 5rem;
    right: 1.25rem;
    z-index: 40;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
}

[dir="rtl"] .language-switcher {
    right: auto;
    left: 1.25rem;
}

.language-switcher button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: background-color 0.3s;
}

.language-switcher button:hover {
    background-color: #f3f4f6;
}

.language-switcher button.active {
    background-color: #2563eb;
    color: white;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-icon-blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.contact-icon-green {
    background-color: #d1fae5;
    color: #10b981;
}

.contact-icon-purple {
    background-color: #e9d5ff;
    color: #9333ea;
}

.contact-icon-orange {
    background-color: #fed7aa;
    color: #f97316;
}

/* Social Media */
.social-media-section {
    margin-top: 3rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-facebook {
    background-color: #2563eb;
}

.social-facebook:hover {
    background-color: #1d4ed8;
}

.social-twitter {
    background-color: #60a5fa;
}

.social-twitter:hover {
    background-color: #3b82f6;
}

.social-linkedin {
    background-color: #1e40af;
}

.social-linkedin:hover {
    background-color: #1e3a8a;
}

.social-github {
    background-color: #1f2937;
}

.social-github:hover {
    background-color: #111827;
}

.social-instagram {
    background-color: #db2777;
}

.social-instagram:hover {
    background-color: #be185d;
}

/* Service Features */
.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.service-feature .icon {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    text-align: center;
}

.process-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
}

.process-number-blue {
    background-color: #2563eb;
}

.process-number-green {
    background-color: #10b981;
}

.process-number-purple {
    background-color: #9333ea;
}

.process-number-orange {
    background-color: #f97316;
}

.process-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
}

.process-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.tech-category {
    text-align: center;
}

.tech-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111827;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.tech-tag-blue {
    background-color: #dbeafe;
    color: #2563eb;
}

.tech-tag-green {
    background-color: #d1fae5;
    color: #10b981;
}

.tech-tag-yellow {
    background-color: #fef3c7;
    color: #d97706;
}

.tech-tag-purple {
    background-color: #e9d5ff;
    color: #9333ea;
}

.tech-tag-red {
    background-color: #fee2e2;
    color: #dc2626;
}

.tech-tag-orange {
    background-color: #fed7aa;
    color: #f97316;
}

/* Card Icon Colors */
.card-icon-red {
    background-color: #fee2e2;
    color: #dc2626;
}

.card-icon-indigo {
    background-color: #e0e7ff;
    color: #4f46e5;
}

/* FAQ Section */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #111827;
}

.faq-section p {
    color: #6b7280;
    line-height: 1.6;
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .flex {
    flex-direction: row-reverse;
}

[dir="rtl"] .text-left {
    text-align: right;
}

[dir="rtl"] .text-right {
    text-align: left;
}

[dir="rtl"] .ml-3,
[dir="rtl"] .mr-3 {
    margin-left: 0;
    margin-right: 0.75rem;
}

[dir="rtl"] .ml-4,
[dir="rtl"] .mr-4 {
    margin-left: 0;
    margin-right: 1rem;
}

[dir="rtl"] .nav-links {
    gap: 2rem;
}

[dir="rtl"] .nav-links > * + * {
    margin-left: 0;
    margin-right: 2rem;
}

[dir="rtl"] .grid {
    direction: rtl;
}

[dir="rtl"] .list-disc {
    padding-right: 1.5rem;
    padding-left: 0;
}

[dir="rtl"] .pl-6,
[dir="rtl"] .pr-3 {
    padding-left: 0;
    padding-right: 1.5rem;
}

[dir="rtl"] .contact-icon {
    margin-right: 0;
    margin-left: 1rem;
}

[dir="rtl"] .pricing-features .icon {
    margin-right: 0;
    margin-left: 0.75rem;
}

[dir="rtl"] .blog-author img {
    margin-right: 0;
    margin-left: 0.75rem;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-blue-600 { color: #2563eb; }
.text-gray-600 { color: #6b7280; }
.text-gray-900 { color: #111827; }
.text-white { color: white; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }
.hidden { display: none; }

/* Responsive Adjustments */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
}

/* Loading Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}
