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

body {
    font-family: 'Exo', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Hero Section */
.hero {
    color: white;
    padding: 20px 0 30px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.hero-left {
    z-index: 2;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #e0f2fe;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.highlight {
    color: white;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 480px;
}

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

.btn-primary {
    background: white;
    color: #1e40af;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Exo', sans-serif;
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary svg {
    flex-shrink: 0;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Exo', sans-serif;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary svg {
    flex-shrink: 0;
}

/* Hero Right - Image */
.hero-right {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    max-width: 750px;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s ease;
    background: transparent;
    mix-blend-mode: normal;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Stats Section */
.stats {
    background: transparent;
    padding: 40px 0;
    margin-top: -100px;
    position: relative;
    z-index: 3;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 48px;
}

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

.stat-item:not(:last-child) {
    border-right: 1px solid #e5e7eb;
    padding-right: 40px;
}

.stat-item:not(:first-child) {
    padding-left: 40px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    color: #6b7280;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}

/* Products Section */
.products {
    background: #ffffff;
    padding: 100px 0 0 0;
}

.products-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.products-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease;
}

.section-badge.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    width: fit-content;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.1s;
}

.section-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #334155;
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100%;
}

.section-description {
    color: #64748b;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.section-description.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateX(0) scale(1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card.slide-out-right {
    transform: translateX(100%);
    opacity: 0;
}

.product-card.slide-in-left {
    transform: translateX(-100%);
    opacity: 0;
}

.product-card.slide-in-left.active {
    transform: translateX(0);
    opacity: 1;
}

.product-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.product-card:hover {
    border: 1px solid #334155;
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: #f8fafc;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 12px;
}

.action-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: white !important;
    color: #008080 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Exo', sans-serif;
}

.action-btn:hover {
    background: #334155 !important;
    color: white !important;
}

.view-btn:hover {
    background: #008080 !important;
    color: white !important;
}

.cart-btn:hover {
    background: #008080 !important;
    color: white !important;
}

.product-content {
    padding: 24px;
    text-align: center;
}

.product-title {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-description {
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* stylelint-disable-line property-no-vendor-prefix */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-size: 26px;
    font-weight: 700;
    color: #008080;
}

/* View All Products Link */
.view-all-products {
    margin-top: 48px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.view-all-products.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.view-all-btn {
    padding: 12px 24px;
    background: transparent;
    color: #334155;
    border: 2px solid #334155;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Exo', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(51, 65, 85, 0.2);
}

.view-all-btn:hover {
    background: #334155;
    color: white;
    box-shadow: 0 6px 20px rgba(51, 65, 85, 0.4);
}

.view-all-btn svg {
    transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
    transform: translateX(2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image {
        max-width: 400px;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }
    
    .stat-item:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding-right: 0;
        padding-bottom: 20px;
    }
    
    .stat-item:not(:first-child) {
        padding-left: 0;
        padding-top: 20px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        margin: 0 16px;
    }
    
    .products-container {
        padding: 0 16px;
    }
    
    .section-description {
        margin-bottom: 48px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-content {
        padding: 16px;
    }
    
    .action-btn {
        width: 40px;
        height: 40px;
    }
    
    .action-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* Sektörde Lider Section */
.sektor-lider {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.sektor-lider-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.sektor-lider-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.sektor-lider-left {
    flex: 1;
    max-width: 700px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sektor-lider-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.sektor-lider-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
    line-height: 1.2;
    font-family: 'Exo', sans-serif;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.sektor-lider-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.sektor-lider-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

.sektor-lider-description.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.sektor-lider-right {
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}

.sektor-lider-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.hakkimizda-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #334155;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Exo', sans-serif;
    backdrop-filter: blur(10px);
}

.hakkimizda-btn:hover {
    background: #334155;
    color: white;
    box-shadow: 0 8px 25px rgba(51, 65, 85, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .sektor-lider-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .sektor-lider-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .sektor-lider {
        padding: 60px 0;
    }
    
    .sektor-lider-title {
        font-size: 36px;
        margin-bottom: 24px;
    }
    
    .sektor-lider-description {
        font-size: 16px;
    }
    
    .hakkimizda-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .sektor-lider {
        padding: 50px 0;
    }
    
    .sektor-lider-container {
        padding: 0 16px;
    }
    
    .sektor-lider-title {
        font-size: 28px;
    }
    
    .sektor-lider-description {
        font-size: 15px;
    }
    
    .hakkimizda-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* AI Automation Section */
.ai-automation {
    background: #ebf4fa;
    padding: 100px 0;
}

.ai-automation-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ai-left {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.ai-image {
    width: 600px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.ai-image img:hover {
    transform: scale(1.02);
}

.ai-right {
    padding-left: 20px;
}

.ai-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.ai-badge {
    background: #f1f5f9;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease;
}

.ai-badge.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.ai-badge svg {
    color: #334155;
}

.ai-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    width: fit-content;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.1s;
}

.ai-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.ai-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #334155;
    transition: width 0.3s ease;
}

.ai-title:hover::after {
    width: 100%;
}

.ai-description {
    color: #64748b;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.ai-description.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.ai-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
    background: rgba(248, 250, 252, 0.8);
    padding: 32px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.5);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.3s;
}

.ai-features.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.ai-feature {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.ai-feature.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.ai-feature-icon {
    width: 44px;
    height: 44px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    flex-shrink: 0;
}

.ai-feature-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.ai-feature-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.4;
}

.ai-learn-more {
    text-align: left;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.5s;
}

.ai-learn-more.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #334155;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 25px;
    border: 2px solid #334155;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(51, 65, 85, 0.2);
    font-family: 'Exo', sans-serif;
}

.learn-more-link:hover {
    background: #334155;
    color: white;
    box-shadow: 0 6px 20px rgba(51, 65, 85, 0.4);
}

.learn-more-link svg {
    transition: transform 0.3s;
}

.learn-more-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .ai-automation-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .ai-image {
        width: 480px;
        height: 430px;
    }
    
    .ai-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .ai-automation {
        padding: 80px 0;
    }
    
    .ai-automation-container {
        padding: 0 20px;
        gap: 50px;
    }
    
    .ai-image {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
    
    .ai-image img {
        width: 100%;
        height: auto;
    }
    
    .ai-right {
        padding-left: 0;
        text-align: center;
    }
    
    .ai-title {
        font-size: 28px;
        margin-bottom: 16px;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .ai-description {
        font-size: 16px;
        margin-bottom: 32px;
        text-align: center;
    }
    
    .ai-features {
        padding: 24px;
        gap: 20px;
        margin-bottom: 32px;
    }
    
    .ai-feature {
        text-align: left;
        gap: 12px;
    }
    
    .ai-feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .ai-feature-content h3 {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .ai-feature-content p {
        font-size: 13px;
    }
    
    .ai-learn-more {
        text-align: center;
    }
    
    .learn-more-link {
        font-size: 15px;
        padding: 12px 24px;
        background: white;
        color: #334155;
        border-radius: 25px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        border: 2px solid #334155;
        box-shadow: 0 4px 15px rgba(51, 65, 85, 0.2);
    }
    
    .learn-more-link:hover {
        background: #334155;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(51, 65, 85, 0.4);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 80px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .ai-automation {
        padding: 60px 0;
    }
    
    .ai-automation-container {
        padding: 0 16px;
        gap: 40px;
    }
    
    .ai-image {
        max-width: 280px;
    }
    
    .ai-title {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .ai-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 24px;
    }
    
    .ai-features {
        padding: 20px;
        gap: 16px;
        margin-bottom: 24px;
        border-radius: 12px;
    }
    
    .ai-feature {
        gap: 10px;
    }
    
    .ai-feature-icon {
        width: 36px;
        height: 36px;
    }
    
    .ai-feature-content h3 {
        font-size: 14px;
        margin-bottom: 3px;
        line-height: 1.3;
    }
    
    .ai-feature-content p {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .learn-more-link {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* Dream Projects Section - New Modern Design */
.dream-projects-new {
    background: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    color: #0f172a;
}

.dream-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    animation: float 20s infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(59, 130, 246, 0.15);
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
    background: rgba(168, 85, 247, 0.1);
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
    background: rgba(34, 197, 94, 0.1);
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
    background: rgba(251, 146, 60, 0.1);
}

.shape-5 {
    width: 40px;
    height: 40px;
    bottom: 10%;
    right: 10%;
    animation-delay: -7s;
    background: rgba(236, 72, 153, 0.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
        opacity: 1;
    }
    66% {
        transform: translateY(-60px) rotate(240deg);
        opacity: 0.5;
    }
}

.dream-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.dream-header {
    text-align: center;
    margin-bottom: 80px;
}

.dream-badge {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(168, 85, 247, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #60a5fa;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    to {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.6), 0 0 40px rgba(168, 85, 247, 0.3);
    }
}

.dream-title {
    margin-bottom: 24px;
    line-height: 1.2;
}

.dream-title-main {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.dream-title-highlight {
    display: block;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3a8a, #334155, #60a5fa, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dream-subtitle {
    color: #64748b;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.dream-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.dream-service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.dream-service-card:nth-child(1) { animation-delay: 0.1s; }
.dream-service-card:nth-child(2) { animation-delay: 0.2s; }
.dream-service-card:nth-child(3) { animation-delay: 0.3s; }
.dream-service-card:nth-child(4) { animation-delay: 0.4s; }
.dream-service-card:nth-child(5) { animation-delay: 0.5s; }
.dream-service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dream-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(168, 85, 247, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
}

.dream-service-card:hover::before {
    opacity: 1;
}

.dream-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.service-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.icon-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #334155, #8b5cf6);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.dream-service-card:hover .icon-gradient {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.4);
}

.dream-service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.dream-service-card p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.feature-tag {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.dream-cta-btn {
    background: linear-gradient(135deg, #334155, #8b5cf6);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    z-index: 2;
    font-family: 'Exo', sans-serif;
}

.btn-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.dream-cta-btn:hover .btn-effect {
    left: 100%;
}

.dream-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.5);
}

.dream-cta-btn svg {
    transition: transform 0.3s ease;
}

.dream-cta-btn:hover svg {
    transform: translateX(4px);
}

.dream-cta-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    padding: 48px 32px;
    position: relative;
    overflow: hidden;
}

.dream-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.primary-cta-btn {
    background: linear-gradient(135deg, #334155, #8b5cf6);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
    font-family: 'Exo', sans-serif;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.primary-cta-btn:hover .btn-shine {
    left: 100%;
}

.primary-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(59, 130, 246, 0.6);
}

.secondary-cta-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: 'Exo', sans-serif;
}

.secondary-cta-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dream-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .dream-title-main {
        font-size: 36px;
    }
    
    .dream-title-highlight {
        font-size: 42px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-cta-btn,
    .secondary-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .dream-projects-new {
        padding: 80px 0;
    }
    
    .dream-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .dream-header {
        margin-bottom: 60px;
    }
    
    .dream-title-main {
        font-size: 28px;
    }
    
    .dream-title-highlight {
        font-size: 32px;
    }
    
    .dream-service-card {
        padding: 24px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .dream-service-card h3 {
        font-size: 20px;
    }
    
    .dream-cta-section {
        padding: 32px 24px;
    }
    
    .cta-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .dream-projects-new {
        padding: 60px 0;
    }
    
    .dream-badge {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .dream-title-main {
        font-size: 24px;
    }
    
    .dream-title-highlight {
        font-size: 28px;
    }
    
    .dream-subtitle {
        font-size: 16px;
    }
    
    .dream-service-card {
        padding: 20px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
    
    .dream-service-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .dream-service-card p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    
    .service-features {
        margin-bottom: 20px;
    }
    
    .feature-tag {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .dream-cta-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .dream-cta-section {
        padding: 24px 16px;
        border-radius: 24px;
    }
    
    .cta-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .cta-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .primary-cta-btn,
    .secondary-cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 60px 0 100px 0;
}

.faq-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-badge {
    background: #e0f2fe;
    color: #0369a1;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s ease;
}

.faq-badge.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    width: fit-content;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.1s;
}

.faq-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #334155;
    transition: width 0.3s ease;
}

.faq-title:hover::after {
    width: 100%;
}

.faq-description {
    color: #64748b;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.faq-description.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #334155;
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    padding-right: 16px;
    line-height: 1.4;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle svg {
    color: #64748b;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: #334155;
}

.faq-item.active .faq-toggle svg {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px 24px;
    margin: 0;
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
}

.faq-cta {
    background: linear-gradient(135deg, #f1f5f9 0%, #e0f2fe 100%);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.faq-cta-content {
    position: relative;
    z-index: 2;
}

.faq-cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.faq-cta-content p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.faq-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.faq-primary-btn {
    background: linear-gradient(135deg, #334155, #1e40af);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
    font-family: 'Exo', sans-serif;
}

.faq-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.faq-primary-btn svg {
    transition: transform 0.3s ease;
}

.faq-primary-btn:hover svg {
    transform: translateX(2px);
}

.faq-secondary-btn {
    background: transparent;
    border: 2px solid #334155;
    color: #334155;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Exo', sans-serif;
}

.faq-secondary-btn:hover {
    background: #334155;
    color: white;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-header {
        margin-bottom: 48px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-description {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 15px;
    }
    
    .faq-cta {
        padding: 40px 24px;
        border-radius: 16px;
    }
    
    .faq-cta-content h3 {
        font-size: 24px;
    }
    
    .faq-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .faq-primary-btn,
    .faq-secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-grid {
        margin-bottom: 60px;
    }
    
    .faq-question {
        padding: 16px;
    }
    
    .faq-question h3 {
        font-size: 15px;
        padding-right: 12px;
    }
    
    .faq-toggle {
        width: 28px;
        height: 28px;
    }
    
    .faq-answer p {
        padding: 0 16px 16px 16px;
        font-size: 14px;
    }
    
    .faq-cta {
        padding: 32px 20px;
    }
    
    .faq-cta-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .faq-cta-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .faq-primary-btn,
    .faq-secondary-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

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

.blog-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.blog-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-badge {
    background: #fef3e2;
    color: #ea580c;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
}

.blog-title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.blog-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #334155;
    transition: width 0.3s ease;
}

.blog-title:hover::after {
    width: 100%;
}

.blog-description {
    color: #64748b;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #334155;
}

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

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

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

.blog-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.blog-category {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #0f172a;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #64748b;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-date svg {
    color: #94a3b8;
}

.blog-read-time {
    position: relative;
    padding-left: 16px;
}

.blog-read-time::before {
    content: '•';
    position: absolute;
    left: 6px;
    color: #cbd5e1;
}

.blog-post-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-post-title {
    color: #334155;
}

.blog-excerpt {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* stylelint-disable-line property-no-vendor-prefix */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

.author-role {
    font-size: 12px;
    color: #64748b;
}

.blog-cta {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 146, 60, 0.05) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
}

.blog-cta-content {
    position: relative;
    z-index: 2;
}

.blog-cta-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.blog-cta-content p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.blog-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.blog-primary-btn {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
    font-family: 'Exo', sans-serif;
}

.blog-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
}

.blog-primary-btn svg {
    transition: transform 0.3s ease;
}

.blog-primary-btn:hover svg {
    transform: translateX(2px);
}

.blog-secondary-btn {
    background: transparent;
    border: 2px solid #ea580c;
    color: #ea580c;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-family: 'Exo', sans-serif;
}

.blog-secondary-btn:hover {
    background: #ea580c;
    color: white;
}

.blog-secondary-btn svg {
    transition: transform 0.3s ease;
}

.blog-secondary-btn:hover svg {
    transform: rotate(10deg);
}

/* Blog Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 80px 0;
    }
    
    .blog-header {
        margin-bottom: 48px;
    }
    
    .blog-title {
        font-size: 28px;
    }
    
    .blog-description {
        font-size: 16px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }
    
    .blog-card {
        border-radius: 12px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-post-title {
        font-size: 18px;
    }
    
    .blog-excerpt {
        font-size: 14px;
    }
    
    .blog-cta {
        padding: 40px 24px;
        border-radius: 16px;
    }
    
    .blog-cta-content h3 {
        font-size: 24px;
    }
    
    .blog-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-primary-btn,
    .blog-secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-image {
        height: 160px;
    }
    
    .blog-content {
        padding: 16px;
    }
    
    .blog-meta {
        margin-bottom: 12px;
        font-size: 12px;
    }
    
    .blog-post-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .blog-excerpt {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .blog-author {
        padding-top: 12px;
    }
    
    .author-avatar {
        width: 32px;
        height: 32px;
    }
    
    .author-name {
        font-size: 13px;
    }
    
    .author-role {
        font-size: 11px;
    }
    
    .blog-cta {
        padding: 32px 20px;
    }
    
    .blog-cta-content h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .blog-cta-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .blog-primary-btn,
    .blog-secondary-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    position: relative;
    overflow: hidden;
}

.testimonials-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.testimonials-title {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #0f172a, #475569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.1s;
}

.testimonials-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #334155, #8b5cf6);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.testimonials-title:hover::after {
    width: 80%;
}

.testimonials-description {
    color: #64748b;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.testimonials-description.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.4s;
}

.testimonials-slider.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.3);
    background: white;
    color: #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    z-index: 10;
}

.testimonial-btn:hover {
    background: #334155;
    color: white;
    border-color: #334155;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.testimonial-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    background: #f1f5f9;
    color: #94a3b8;
    border-color: rgba(148, 163, 184, 0.3);
}

.testimonials-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.testimonials-container-inner {
    display: flex;
    transition: transform 0.5s ease;
    width: 200%; /* 2 sets * 100% */
}

.testimonials-set {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 50%; /* Each set takes 50% of container width */
    flex-shrink: 0;
}


.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #334155, #8b5cf6, #06b6d4);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: #334155;
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star.filled {
    color: #fbbf24;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-text {
    color: #475569;
    font-size: 16px;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 48px;
    color: #334155;
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonial-text::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 48px;
    color: #334155;
    opacity: 0.3;
    font-family: serif;
    line-height: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 2px solid #f1f5f9;
    position: relative;
}

.testimonial-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(135deg, #334155, #8b5cf6);
    border-radius: 2px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover .testimonial-avatar {
    border-color: #334155;
    transform: scale(1.05);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-name {
    color: #334155;
}

.testimonial-position {
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 48px 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease 0.6s;
}

.testimonials-stats.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.testimonials-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.testimonials-stats .stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials-stats .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #008080;
    margin-bottom: 8px;
    line-height: 1;
    display: block;
    transition: all 0.3s ease;
}

.testimonials-stats .stat-number.counting {
    transform: scale(1.1);
}

.testimonials-stats .stat-label {
    color: #64748b;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
    .testimonials-track {
        gap: 24px;
    }
    
    .testimonials-grid {
        gap: 24px;
    }
    
    .testimonials-stats {
        gap: 60px;
        flex-wrap: wrap;
    }
    
    .testimonials-stats .stat-number {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-header {
        margin-bottom: 60px;
    }
    
    .testimonials-title {
        font-size: 32px;
    }
    
    .testimonials-description {
        font-size: 16px;
    }
    
    .testimonials-track {
        gap: 20px;
        animation-duration: 20s;
    }
    
    .testimonials-grid {
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 24px;
        border-radius: 16px;
        min-width: 280px;
        flex-shrink: 0;
    }
    
    .testimonial-text {
        font-size: 15px;
        padding: 0 16px;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 36px;
    }
    
    .testimonial-text::before {
        top: -8px;
    }
    
    .testimonial-text::after {
        bottom: -16px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-name {
        font-size: 16px;
    }
    
    .testimonial-position {
        font-size: 13px;
    }
    
    .testimonials-stats {
        gap: 40px;
        padding: 40px 24px;
        border-radius: 16px;
    }
    
    .testimonials-stats .stat-number {
        font-size: 36px;
    }
    
    .testimonials-stats .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-badge {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .testimonials-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .testimonials-description {
        font-size: 15px;
    }
    
    .testimonials-track {
        gap: 16px;
        animation-duration: 25s;
    }
    
    .testimonials-grid {
        gap: 16px;
    }
    
    .testimonial-card {
        padding: 20px;
        border-radius: 12px;
        min-width: 260px;
    }
    
    .testimonial-content {
        margin-bottom: 20px;
    }
    
    .stars {
        margin-bottom: 16px;
    }
    
    .star.filled {
        width: 16px;
        height: 16px;
    }
    
    .testimonial-text {
        font-size: 14px;
        padding: 0 12px;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 28px;
    }
    
    .testimonial-footer {
        gap: 12px;
        padding-top: 20px;
    }
    
    .testimonial-avatar {
        width: 44px;
        height: 44px;
        border-width: 2px;
    }
    
    .testimonial-name {
        font-size: 15px;
        margin-bottom: 2px;
    }
    
    .testimonial-position {
        font-size: 12px;
    }
    
    .testimonials-stats {
        gap: 24px;
        padding: 32px 16px;
        flex-direction: column;
    }
    
    .testimonials-stats .stat-item {
        margin-bottom: 16px;
    }
    
    .testimonials-stats .stat-number {
        font-size: 32px;
        margin-bottom: 4px;
    }
    
    .testimonials-stats .stat-label {
        font-size: 13px;
    }
}

/* Price Duration Styling - SaaS fiyat formatı için global stil */
.price-duration {
    font-size: 0.7em !important;
    font-weight: 400 !important;
    color: #334155 !important;
    margin-left: 0 !important;
    vertical-align: middle !important;
}

/* Product card içindeki price-duration için özel stil */
.product-price .price-duration {
    color: #334155 !important;
    opacity: 1 !important;
}

/* Dark theme için price-duration */
@media (prefers-color-scheme: dark) {
    .price-duration {
        color: #334155 !important;
    }
}

/* ===== MÜŞTERİ PANELİ SIDEBAR TASARIMI ===== */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    
    /* Footer Gradient Background - Aynı Tasarım */
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #008080 100%);
    color: white;
    position: relative;
}

/* Pattern Overlay - DISABLED */
.sidebar::before {
    display: none;
}

/* Footer Style Overlay Efekti */
.sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.1) 0%, rgba(0, 128, 128, 0.05) 50%, rgba(0, 128, 128, 0.15) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Animations - DISABLED */

/* Sidebar Header */
.sidebar-header {
    padding: 32px 24px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.logo-icon:hover::before {
    left: 100%;
}

.logo-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.3);
    background: rgba(0, 128, 128, 0.2);
}

/* Custom Logo Styling - Clean & Simple */
.logo-icon.custom-logo {
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    width: 200px;
    height: 80px;
    border-radius: 0;
    animation: none;
    transition: none;
}

.logo-icon.custom-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
    filter: none;
}

.logo-icon.custom-logo:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.logo-icon.custom-logo::before {
    display: none;
}

/* Logo Animations - DISABLED */
.logo-icon {
    animation: none;
}

/* Sidebar Navigation */
.sidebar-nav {
    padding: 24px 0;
    height: calc(100vh - 120px);
    overflow-y: auto;
    position: relative;
    z-index: 10;
    
    /* Custom Scrollbar */
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.sidebar-nav::-webkit-scrollbar {
    width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Nav Section */
.nav-section {
    margin-bottom: 32px;
    padding: 0 16px;
}

.nav-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    padding: 0 16px;
    position: relative;
}

.nav-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 16px;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 128, 128, 0.6), rgba(0, 128, 128, 0.2));
    border-radius: 1px;
}

/* Nav List */
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-bottom: 4px;
    position: relative;
}

/* Nav Link */
.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
    transition: left 0.6s ease;
}

.nav-link:hover::before {
    left: 100%;
}

/* Nav Icon */
.nav-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Hover Effects */
.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 128, 128, 0.2);
}

.nav-link:hover .nav-icon {
    color: #00bcd4;
    transform: scale(1.1);
}

/* Active State */
.nav-item.active .nav-link {
    color: white;
    background: linear-gradient(135deg, 
        rgba(0, 128, 128, 0.3) 0%, 
        rgba(0, 188, 212, 0.2) 100%
    );
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 128, 128, 0.3);
    transform: translateX(6px);
    box-shadow: 0 8px 32px rgba(0, 128, 128, 0.25);
}

.nav-item.active .nav-link .nav-icon {
    color: #00bcd4;
    transform: scale(1.05);
    filter: drop-shadow(0 2px 8px rgba(0, 188, 212, 0.3));
}

.nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, #00bcd4, #008080);
    border-radius: 0 2px 2px 0;
    box-shadow: 0 2px 8px rgba(0, 188, 212, 0.4);
}

/* Special Effects for External Links */
.nav-link[href*="http"] {
    position: relative;
}

.nav-link[href*="http"]::after {
    content: '↗';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.nav-link[href*="http"]:hover::after {
    opacity: 1;
    transform: translateY(-50%) translate(2px, -2px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .sidebar {
        width: 260px;
        transform: translateX(-100%);
    }
    
    .sidebar.open {
        transform: translateX(0);
        box-shadow: 10px 0 40px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        max-width: 320px;
    }
    
    .sidebar-header {
        padding: 24px 20px 20px;
    }
    
    .nav-section {
        padding: 0 12px;
        margin-bottom: 24px;
    }
    
    .nav-title {
        padding: 0 12px;
        font-size: 10px;
    }
    
    .nav-link {
        padding: 14px 12px;
        font-size: 15px;
    }
    
    .nav-icon {
        width: 22px;
        height: 22px;
    }
}

/* Sidebar Overlay (Mobile) */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Glow Effect on Sidebar */
.sidebar {
    box-shadow: 
        inset 1px 0 0 rgba(255, 255, 255, 0.1),
        5px 0 20px rgba(0, 0, 0, 0.1);
}

/* Pulse Animation for Active Items */
.nav-item.active .nav-link {
    animation: activePulse 3s ease-in-out infinite;
}

@keyframes activePulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(0, 128, 128, 0.25);
    }
    50% {
        box-shadow: 0 8px 32px rgba(0, 128, 128, 0.4);
    }
}

/* Sidebar Toggle Button (for mobile) */
.sidebar-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #008080, #00bcd4);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 128, 128, 0.3);
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 128, 128, 0.4);
}

.sidebar-toggle:active {
    transform: scale(0.95);
}

@media (max-width: 1024px) {
    .sidebar-toggle {
        display: flex;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .sidebar {
        background: linear-gradient(145deg, 
            #0a0a0a 0%, 
            #1a1a1a 25%, 
            #2a2a2a 50%, 
            #3a3a3a 75%, 
            #4a4a4a 100%
        );
    }
}

/* Performance Optimizations */
.sidebar,
.nav-link,
.logo-icon {
    will-change: transform;
    transform: translateZ(0);
}

/* Print Styles */
@media print {
    .sidebar {
        display: none;
    }
}
