/* Sistem Lazer Widget Styles */
.sistemlazer-widget {
    font-family: 'Exo', sans-serif;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

.sistemlazer-widget * {
    box-sizing: border-box;
}

/* Elementor Editor Preview Fixes */
.elementor-editor-active .sistemlazer-widget,
.elementor-editor-preview .sistemlazer-widget,
.elementor-preview .sistemlazer-widget {
    min-height: 100px;
    width: 100% !important;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}

.elementor-editor-active .sistemlazer-widget .slider-section,
.elementor-editor-preview .sistemlazer-widget .slider-section,
.elementor-preview .sistemlazer-widget .slider-section {
    position: relative;
    width: 100% !important;
    overflow: visible;
    box-sizing: border-box;
}

.elementor-editor-active .sistemlazer-widget .slider-container,
.elementor-editor-preview .sistemlazer-widget .slider-container,
.elementor-preview .sistemlazer-widget .slider-container {
    position: relative;
    width: 100% !important;
    height: 650px !important;
    min-height: 650px;
    overflow: visible;
    box-sizing: border-box;
}

.elementor-editor-active .sistemlazer-widget .slider-wrapper,
.elementor-editor-preview .sistemlazer-widget .slider-wrapper,
.elementor-preview .sistemlazer-widget .slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 650px;
}

.elementor-editor-active .sistemlazer-widget .slide,
.elementor-editor-preview .sistemlazer-widget .slide,
.elementor-preview .sistemlazer-widget .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    min-height: 650px;
}

.elementor-editor-active .sistemlazer-widget .slide.active,
.elementor-editor-preview .sistemlazer-widget .slide.active,
.elementor-preview .sistemlazer-widget .slide.active {
    opacity: 1 !important;
    z-index: 1;
    display: block !important;
}

.elementor-editor-active .sistemlazer-widget .slide:not(.active),
.elementor-editor-preview .sistemlazer-widget .slide:not(.active),
.elementor-preview .sistemlazer-widget .slide:not(.active) {
    opacity: 0;
    z-index: 0;
}

.elementor-editor-active .sistemlazer-widget .slider-content,
.elementor-editor-preview .sistemlazer-widget .slider-content,
.elementor-preview .sistemlazer-widget .slider-content {
    position: absolute;
    z-index: 10;
}

.elementor-editor-active .sistemlazer-widget .grid-section,
.elementor-editor-preview .sistemlazer-widget .grid-section,
.elementor-preview .sistemlazer-widget .grid-section {
    position: absolute;
    z-index: 10;
}

.elementor-editor-active .sistemlazer-widget .slider-indicators,
.elementor-editor-preview .sistemlazer-widget .slider-indicators,
.elementor-preview .sistemlazer-widget .slider-indicators {
    position: absolute;
    z-index: 10;
}

.elementor-editor-active .sistemlazer-widget .products-section,
.elementor-editor-active .sistemlazer-widget .about-section,
.elementor-editor-active .sistemlazer-widget .features-section,
.elementor-editor-active .sistemlazer-widget .blog-section,
.elementor-editor-preview .sistemlazer-widget .products-section,
.elementor-editor-preview .sistemlazer-widget .about-section,
.elementor-editor-preview .sistemlazer-widget .features-section,
.elementor-editor-preview .sistemlazer-widget .blog-section,
.elementor-preview .sistemlazer-widget .products-section,
.elementor-preview .sistemlazer-widget .about-section,
.elementor-preview .sistemlazer-widget .features-section,
.elementor-preview .sistemlazer-widget .blog-section {
    width: 100% !important;
    max-width: 100% !important;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}

/* Slider Section */
.slider-section {
    width: 100%;
    margin: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Slider Content (Başlık ve Açıklama) */
.slider-content {
    position: absolute;
    left: 50%;
    top: calc(15% - 20px);
    transform: translateX(-50%);
    z-index: 10;
    max-width: 780px;
    width: 90%;
}

.slider-content-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    margin-bottom: 10px;
}


.slider-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.slider-description {
    font-size: 0.9rem;
    color: #ffffff;
    line-height: 1.5;
    opacity: 0.95;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.indicator:hover {
    background: rgba(236, 72, 20, 0.7);
    transform: translateY(-3px);
    border-color: #ec4814;
}

.indicator.active {
    background: #ec4814;
    border-color: #ec4814;
}

/* Grid Section (Slider üzerinde) */
.grid-section {
    position: absolute;
    left: 50%;
    top: calc(15% - 20px + 170px + 20px);
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    z-index: 10;
    max-width: 700px;
    width: 90%;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: -1px;
    align-content: start;
}

/* Compact grid for 1-2 items */
.grid-section.grid-1,
.grid-section.grid-2 {
    padding: 20px 30px;
    align-content: center;
}

/* Single item - center it */
.grid-section.grid-1 .grid-item {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - 7.5px);
    width: calc(50% - 7.5px);
}

/* Center last item when 3 or 5 items */
.grid-section.grid-3 .grid-item:last-child,
.grid-section.grid-5 .grid-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - 7.5px);
    width: calc(50% - 7.5px);
}



.grid-item {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 14px 22px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}


.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(4, 9, 47, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.grid-item:hover::before {
    left: 100%;
}

.grid-item:hover {
    transform: translateX(-5px);
    border-color: #ec4814;
    background: #ffffff;
}

.grid-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
}

.grid-content:hover {
    color: inherit;
    text-decoration: none;
}

.grid-arrow {
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #04092f;
    border-radius: 8px;
    flex-shrink: 0;
    line-height: 1;
}

.grid-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.grid-size {
    font-size: 0.85rem;
    font-weight: 700;
    color: #04092f;
}

.grid-name {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid-section {
        max-width: 350px;
        gap: 12px;
    }
    
    .grid-section.grid-1,
    .grid-section.grid-2 {
        padding: 20px 25px;
        align-content: center;
    }
    
    .grid-item {
        padding: 12px 15px;
    }
    
    .slider-content {
        top: calc(12% - 20px);
        max-width: 630px;
    }
    
    .slider-content-card {
        padding: 15px 20px;
        margin-bottom: 10px;
    }
    
    .grid-section {
        top: calc(12% - 20px + 150px + 20px);
        max-width: 700px;
        padding: 25px;
        margin-top: -1px;
    }
    
    
    .grid-item {
        padding: 12px 18px;
    }
    
    .slider-title {
        font-size: 1.5rem;
    }
    
    .slider-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: auto;
        min-height: 600px;
        padding-bottom: 0;
        overflow: hidden;
    }
    
    .slider-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 600px;
    }
    
    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 600px;
        opacity: 0;
    }
    
    .slide.active {
        opacity: 1;
    }
    
    .slide-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 600px;
    }
    
    .slider-content {
        position: absolute;
        left: 50%;
        top: 20px;
        transform: translateX(-50%);
        max-width: 95%;
        width: 95%;
        z-index: 10;
        padding: 0;
    }
    
    .slider-content-card {
        padding: 12px 15px;
        margin-bottom: 0;
        position: relative;
    }
    
    .slider-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .slider-description {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .slider-indicators {
        position: absolute;
        bottom: 15px;
        right: 15px;
        gap: 6px;
        z-index: 10;
    }
    
    .indicator {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .grid-section {
        position: absolute;
        left: 50%;
        top: calc(20px + 80px + 5px);
        transform: translateX(-50%) scale(0.85);
        transform-origin: top center;
        max-width: 95%;
        width: 95%;
        margin: 0;
        padding: 15px;
        grid-template-columns: 1fr;
        gap: 10px;
        z-index: 10;
        align-content: start;
    }
    
    .grid-section.grid-3 .grid-item:last-child,
    .grid-section.grid-5 .grid-item:last-child {
        grid-column: 1;
        justify-self: stretch;
        max-width: 100%;
        width: 100%;
    }
    
    .grid-section.grid-1,
    .grid-section.grid-2,
    .grid-section.grid-3,
    .grid-section.grid-5 {
        top: calc(20px + 80px + 5px + 45px);
    }
    
    .grid-section.grid-1,
    .grid-section.grid-2 {
        padding: 15px;
        align-content: center;
    }
    
    .grid-item {
        padding: 12px 15px;
        min-height: 55px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .grid-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .grid-size {
        font-size: 0.85rem;
    }
    
    .grid-name {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: auto;
        min-height: 550px;
        padding-bottom: 0;
        overflow: hidden;
    }
    
    .slider-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 550px;
    }
    
    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 550px;
        opacity: 0;
    }
    
    .slide.active {
        opacity: 1;
    }
    
    .slide-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-height: 550px;
    }
    
    .slider-content {
        position: absolute;
        left: 50%;
        top: 15px;
        transform: translateX(-50%);
        max-width: 95%;
        width: 95%;
        z-index: 10;
        padding: 0;
    }
    
    .slider-content-card {
        padding: 10px 12px;
        margin-bottom: 0;
    }
    
    .slider-title {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .slider-description {
        font-size: 0.7rem;
    }
    
    .slider-indicators {
        position: absolute;
        bottom: 10px;
        right: 10px;
        gap: 5px;
        z-index: 10;
    }
    
    .indicator {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .grid-section {
        position: absolute;
        left: 50%;
        top: calc(15px + 70px + 5px);
        transform: translateX(-50%) scale(0.85);
        transform-origin: top center;
        max-width: 95%;
        width: 95%;
        margin: 0;
        padding: 12px;
        grid-template-columns: 1fr;
        gap: 8px;
        z-index: 10;
        align-content: start;
    }
    
    .grid-section.grid-1,
    .grid-section.grid-2,
    .grid-section.grid-3,
    .grid-section.grid-5 {
        top: calc(15px + 70px + 5px + 45px);
    }
    
    .grid-section.grid-1,
    .grid-section.grid-2 {
        padding: 12px;
        align-content: center;
    }
    
    .grid-section.grid-3 .grid-item:last-child,
    .grid-section.grid-5 .grid-item:last-child {
        grid-column: 1;
        justify-self: stretch;
        max-width: 100%;
        width: 100%;
    }
    
    .grid-item {
        padding: 10px 12px;
        min-height: 50px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .grid-arrow {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .grid-size {
        font-size: 0.8rem;
    }
    
    .grid-name {
        font-size: 0.7rem;
    }
}

/* Products Carousel Section */
.products-section {
    width: 100%;
    padding: 60px 30px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.products-container {
    width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.products-carousel {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
}

.product-item {
    flex: 1 1 0;
    min-width: 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #04092f;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 9, 47, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-item:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #04092f;
    padding: 20px 20px 10px;
    margin: 0;
    text-align: center;
}

.product-description {
    font-size: 0.9rem;
    color: #666;
    padding: 0 20px 20px;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}


@media (max-width: 768px) {
    .products-section {
        padding: 40px 15px;
    }
    
    .products-carousel {
        gap: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }
    
    .products-carousel::-webkit-scrollbar {
        height: 4px;
    }
    
    .products-carousel::-webkit-scrollbar-track {
        background: #e0e0e0;
        border-radius: 2px;
    }
    
    .products-carousel::-webkit-scrollbar-thumb {
        background: #ec4814;
        border-radius: 2px;
    }
    
    .product-item {
        flex: 0 0 280px;
        scroll-snap-align: start;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-title {
        font-size: 1.1rem;
        padding: 15px 15px 8px;
    }
    
    .product-description {
        font-size: 0.85rem;
        padding: 0 15px 15px;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 30px 10px;
    }
    
    .product-item {
        flex: 0 0 240px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-title {
        font-size: 1rem;
        padding: 12px 12px 6px;
    }
    
    .product-description {
        font-size: 0.8rem;
        padding: 0 12px 12px;
    }
}

/* About Section */
.about-section {
    width: 100%;
    padding: 80px 30px;
    background-color: #ffffff;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.about-left {
    padding-right: 40px;
}

.about-subtitle {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.about-subtitle svg {
    flex-shrink: 0;
}

.about-subtext {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ec4814;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #04092f;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: #ec4814;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-button:hover {
    background: #d63d0f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(236, 72, 20, 0.3);
}

.about-button:hover .button-arrow {
    transform: translateX(5px);
}

.button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.about-right {
    display: flex;
    justify-content: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: #f0f0f0;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-content {
    width: 100%;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #04092f;
    margin-bottom: 5px;
}

.stat-title {
    font-size: 1rem;
    font-weight: 600;
    color: #04092f;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.85rem;
    color: #666;
}


@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-left {
        padding-right: 0;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .values-left {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 20px;
    }
    
    .about-content {
        margin-bottom: 50px;
    }
    
    .about-subtitle {
        font-size: 0.9rem;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .about-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .about-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .about-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        flex-direction: row;
        text-align: left;
        padding: 20px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-title {
        font-size: 1rem;
    }
    
    .stat-description {
        font-size: 0.85rem;
    }
    
    .values-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 15px;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-description {
        font-size: 0.85rem;
    }
    
    .about-button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Features Tab Section */
.features-section {
    width: 100%;
    padding: 80px 30px;
    background-color: #04092f;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-wrapper {
    display: grid;
    grid-template-columns: 420px 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.features-col {
    position: relative;
}

.features-col1 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.features-col3 {
    display: flex;
    align-items: center;
    height: 100%;
}

.features-col-inner {
    width: 100%;
}

.features-list-btn {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.features-item-btn {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.features-item-btn:last-child {
    border-bottom: none;
}

.features-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 20px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    border-radius: 0;
    white-space: normal;
    line-height: 1.4;
}

.features-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.features-btn.active {
    background: #ec4814;
    color: #ffffff;
    border-radius: 8px;
}

.features-btn-text {
    font-size: 1.15rem;
    font-weight: 400;
}

.features-btn-icon {
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.features-btn.active .features-btn-icon {
    opacity: 1;
}

.features-btn-icon svg {
    width: 12px;
    height: 12px;
}

.features-btn-icon svg path {
    stroke: #ec4814;
}

.features-list-images {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 550px;
    border-radius: 45%;
    overflow: hidden;
    margin: 0 auto;
}

.features-item-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.features-item-image.active {
    opacity: 1;
}

.features-list-content {
    position: relative;
    width: 100%;
}

.features-item-content {
    position: relative;
    width: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.features-item-content.active {
    display: block;
    opacity: 1;
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.features-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.features-list-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.features-item-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.features-item-feature svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.features-item-feature svg path {
    fill: #86BB46;
}

.features-feature-text {
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .features-wrapper {
        grid-template-columns: 250px 1fr 1fr;
        gap: 30px;
    }
    
    .features-list-images {
        height: 500px;
    }
    
    .features-list-content {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 50px 20px;
    }
    
    .features-section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .features-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-list-btn {
        flex-direction: column;
        overflow-x: visible;
        gap: 10px;
        padding-bottom: 0;
    }
    
    .features-btn {
        border-left: 3px solid transparent;
        border-bottom: none;
        white-space: normal;
        min-width: 100%;
        padding: 12px 20px;
        font-size: 0.9rem;
        text-align: left;
    }
    
    .features-btn-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .features-btn.active,
    .features-btn:hover {
        border-left-color: #ec4814;
        border-bottom-color: transparent;
    }
    
    .features-list-images {
        height: 300px;
    }
    
    .features-list-content {
        min-height: auto;
        padding: 20px;
    }
    
    .features-list-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .features-list-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .features-list-items {
        gap: 12px;
    }
    
    .features-list-item {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .features-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 15px;
    }
    
    .features-section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .features-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        border-left: 3px solid transparent;
        border-bottom: none;
    }
    
    .features-btn-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .features-btn.active,
    .features-btn:hover {
        border-left-color: #ec4814;
        border-bottom-color: transparent;
    }
    
    .features-list-images {
        height: 250px;
    }
    
    .features-list-content {
        padding: 15px;
    }
    
    .features-list-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .features-list-description {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .features-list-item {
        font-size: 0.85rem;
        padding: 10px;
    }
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.blog-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #04092f;
    text-align: center;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.blog-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    min-height: 250px;
    max-height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #04092f;
    padding: 20px;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 50px 20px;
    }
    
    .blog-section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-item {
        padding: 0;
    }
    
    .blog-image {
        height: 200px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .blog-excerpt {
        font-size: 0.9rem;
    }
    
    .blog-read-more {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 40px 15px;
    }
    
    .blog-section-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .blog-grid {
        gap: 20px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 15px;
    }
    
    .blog-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .blog-excerpt {
        font-size: 0.85rem;
    }
    
    .blog-read-more {
        font-size: 0.85rem;
        padding: 6px 14px;
    }
}

