/*
 * ==========================================================================
 * MATA RESPONSIVE STYLES
 * ==========================================================================
 * Comprehensive responsive CSS extracted from mata-main.css
 * Organized by breakpoint from largest to smallest
 *
 * Breakpoints:
 *   - 1200px (Large Desktop)
 *   - 992px (Tablet/Small Desktop)
 *   - 768px (Tablet Portrait)
 *   - 576px (Mobile)
 * ==========================================================================
 */


/* ==========================================================================
   BREAKPOINT: 1200px - Large Desktop
   ========================================================================== */

/* ------------------------------------------
   Header
   ------------------------------------------ */
@media (max-width: 1200px) {
    .btn-header {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ------------------------------------------
   Headline Section
   ------------------------------------------ */
@media (max-width: 1200px) {
    .headline-slide-item {
        height: 400px;
    }

    .headline-nav {
        transform: translateX(calc(-50% + 250px));
        bottom: 20px;
    }

    .headline-nav button {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }
}

/* ------------------------------------------
   Headline Slider
   ------------------------------------------ */
@media (max-width: 1200px) {
    .headline-section {
        padding: 40px 0;
    }

    .headline-slider-wrapper {
        min-height: 450px;
    }

    .headline-swiper {
        padding: 0px;
    }

    .headline-slider-info {
        right: 25px;
        bottom: 25px;
    }
}

/* ------------------------------------------
   Services Section
   ------------------------------------------ */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ------------------------------------------
   Blog Section
   ------------------------------------------ */
@media (max-width: 1200px) {
    .blog-deluxe-grid {
        grid-template-rows: repeat(2, 200px);
    }

    .blog-deluxe-featured .blog-deluxe-title {
        font-size: 20px;
    }
}

/* ------------------------------------------
   Footer
   ------------------------------------------ */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .footer-logo-newsletter {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-newsletter-form {
        width: 100%;
        max-width: none;
    }
}

/* ------------------------------------------
   Projects Section
   ------------------------------------------ */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-rows: repeat(2, 200px);
    }

    .project-featured .project-title {
        font-size: 20px;
    }
}


/* ==========================================================================
   BREAKPOINT: 992px - Tablet / Small Desktop
   ========================================================================== */

/* ------------------------------------------
   Header - Mobile Navigation
   ------------------------------------------ */
@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--white-color);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        overflow-x: hidden;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 998;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

    .nav-item {
        border-bottom: 1px solid #e5e5e5;
    }

    .nav-link {
        width: 100%;
        padding: 16px 0;
        justify-content: space-between;
        color: var(--paragraph-color);
    }

    .nav-item.active .nav-link {
        color: var(--theme-color);
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        transform: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        padding: 0;
        margin: 0;
        background-color: var(--gray-color);
        border-radius: var(--border-radius);
        box-shadow: none;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nav-item.has-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
        margin-bottom: 10px;
    }

    .dropdown-menu li a {
        color: var(--paragraph-color);
        padding: 12px 20px;
    }

    .dropdown-menu li a i {
        color: var(--theme-color);
    }

    .dropdown-menu li a:hover {
        background-color: #e8ecff;
        color: var(--theme-color);
    }

    /* Mobile Mega Menu */
    .mega-menu {
        position: static;
        transform: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        padding: 0;
        background-color: var(--gray-color);
        border-radius: var(--border-radius);
        box-shadow: none;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nav-item.has-mega.active .mega-menu {
        max-height: 3000px;
        padding: 15px;
        margin-bottom: 10px;
    }

    .mega-menu-inner {
        flex-direction: column;
        min-height: auto;
    }

    .mega-categories {
        width: 100%;
        padding: 10px 0;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
        background-color: transparent;
    }

    .mega-category-item {
        padding: 12px 15px;
        border-left: none;
        border-radius: var(--border-radius);
        margin: 0 5px 5px 5px;
    }

    .mega-category-item.active {
        background-color: var(--white-color);
        border-left: none;
    }

    .mega-details {
        padding: 15px 0;
    }

    .detail-header {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .detail-header h4 {
        font-size: 16px;
    }

    .detail-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .detail-item {
        padding: 10px 14px;
    }

    /* Mobile Mega Grid */
    .mega-menu-grid .mega-menu-inner {
        padding: 15px;
    }

    .mega-grid-items {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .mega-grid-item {
        padding: 15px;
    }

    .mega-item-icon {
        width: 40px;
        height: 40px;
    }

    .mega-item-icon i {
        font-size: 16px;
    }

    .mega-item-content h5 {
        font-size: 14px;
    }

    .mega-item-content p {
        font-size: 12px;
    }

    .mega-item-arrow {
        display: none;
    }

    /* Desktop/Mobile Link Visibility */
    .nav-link.desktop-only {
        display: none !important;
    }

    .nav-link.mobile-only {
        display: flex !important;
    }

    /* Mega menu hide on mobile */
    .mega-menu {
        display: none !important;
    }

    /* Mobile Submenu Panel */
    .mobile-submenu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--white-color);
        z-index: 10001;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        overflow-x: hidden;
        visibility: hidden;
    }

    .mobile-submenu.active {
        transform: translateX(0);
        visibility: visible;
    }

    /* Level 2 higher z-index */
    .mobile-submenu-level2 {
        z-index: 10002;
    }

    .mobile-submenu-header {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px;
        border-bottom: 1px solid #e5e5e5;
        background: var(--white-color);
    }

    .mobile-submenu-back {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gray-color);
        border: none;
        border-radius: var(--border-radius);
        color: var(--theme-color);
        font-size: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-submenu-back:hover {
        background: var(--theme-color);
        color: var(--white-color);
    }

    .mobile-submenu-title {
        font-size: 18px;
        font-weight: 600;
        color: var(--theme-color);
    }

    .mobile-submenu-content {
        flex: 1;
        overflow-y: auto;
        padding: 20px;
    }

    .mobile-submenu-group {
        margin-bottom: 25px;
    }

    .mobile-submenu-group-title {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: var(--theme-color);
        margin-bottom: 12px;
        padding-bottom: 8px;
        border-bottom: 1px solid #e5e5e5;
        text-decoration: none;
    }

    .mobile-submenu-group-title:hover {
        color: var(--theme-color);
        opacity: 0.8;
    }

    .mobile-submenu-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-submenu-list li {
        margin-bottom: 0;
    }

    .mobile-submenu-list a {
        display: block;
        padding: 12px 0;
        color: var(--paragraph-color);
        font-size: 14px;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.2s ease;
    }

    .mobile-submenu-list a:hover {
        color: var(--theme-color);
        padding-left: 8px;
    }

    /* Products submenu style */
    .mobile-submenu-products a {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-submenu-products a i {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gray-color);
        color: var(--theme-color);
        border-radius: 8px;
        font-size: 14px;
    }

    .mobile-submenu-products a span {
        font-weight: 500;
    }

    /* Has arrow style for submenu triggers */
    .mobile-submenu-list a.has-arrow {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .mobile-submenu-list a.has-arrow i {
        font-size: 12px;
        color: var(--black-soft-color);
        transition: transform 0.2s ease;
    }

    .mobile-submenu-list a.has-arrow:hover i {
        transform: translateX(3px);
        color: var(--theme-color);
    }

    /* View All Button */
    .mobile-submenu-view-all {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        margin-bottom: 15px;
        background: var(--gray-color);
        color: var(--theme-color);
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.2s ease;
    }

    .mobile-submenu-view-all:hover {
        background: var(--theme-color);
        color: var(--white-color);
    }

    .mobile-submenu-view-all i {
        font-size: 12px;
    }

    /* Hide main menu when submenu is open */
    .main-nav.submenu-open .nav-menu,
    .main-nav.submenu-open .mobile-contact {
        opacity: 0;
        pointer-events: none;
    }

    /* Mobile Contact */
    .mobile-contact {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
        padding-top: 25px;
        border-top: 1px solid #e5e5e5;
    }

    .mobile-map {
        border-radius: 10px;
        overflow: hidden;
    }

    .mobile-map iframe {
        display: block;
    }

    .mobile-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }

    .mobile-contact-item > i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gray-color);
        color: var(--theme-color);
        border-radius: 10px;
        font-size: 16px;
    }

    .mobile-contact-content {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .mobile-contact-label {
        font-size: 11px;
        font-weight: 600;
        color: var(--black-soft-color);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .mobile-contact-content a,
    .mobile-contact-content span {
        color: var(--paragraph-color);
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        line-height: 1.4;
    }

    .mobile-contact-content a:hover {
        color: var(--theme-color);
    }

    /* Mobile Social */
    .mobile-social {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 15px 0;
    }

    .mobile-social a {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--gray-color);
        color: var(--paragraph-color);
        border-radius: 12px;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .mobile-social a:hover {
        background: var(--theme-color);
        color: var(--white-color);
    }

    /* Mobile CTA Button */
    .mobile-cta-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 14px 24px;
        background: var(--theme-color);
        color: var(--white-color) !important;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .mobile-cta-btn:hover {
        opacity: 0.9;
    }

    .mobile-cta-btn i {
        font-size: 15px;
    }

    /* Header Actions */
    .header-actions {
        display: none;
    }
}

/* ------------------------------------------
   Headline Section
   ------------------------------------------ */
@media (max-width: 992px) {
    .headline-section {
        padding: 25px 0;
    }

    .headline-swiper {
        padding:0px;
    }

    .headline-slide-item {
        height: 360px;
    }

    .headline-content h3 {
        font-size: 22px;
    }

    .headline-nav {
        transform: translateX(calc(-50% + 200px));
        bottom: 18px;
    }
}

/* ------------------------------------------
   Services Section
   ------------------------------------------ */
@media (max-width: 992px) {
    .services-section {
        padding: 60px 0;
    }

    .services-header {
        flex-direction: column;
        align-items: stretch;
    }

    .services-search {
        width: 100%;
    }

    .search-input-wrapper {
        width: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ------------------------------------------
   Related Services
   ------------------------------------------ */
@media (max-width: 992px) {
    .related-services {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-desc {
        font-size: 15px;
    }
}

/* ------------------------------------------
   Blog Section
   ------------------------------------------ */
@media (max-width: 992px) {
    .blog-preview-section {
        padding: 60px 0;
    }

    .blog-deluxe-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .blog-deluxe-card.blog-deluxe-featured {
        grid-column: 1 / 3;
        grid-row: 1;
        min-height: 320px;
    }

    .blog-deluxe-card:not(.blog-deluxe-featured) {
        min-height: 220px;
    }

    .blog-deluxe-featured .blog-deluxe-title {
        font-size: 22px;
    }
}

/* ------------------------------------------
   References Section
   ------------------------------------------ */
@media (max-width: 992px) {
    .references-section {
        padding: 60px 0;
    }

    .references-marquee-container {
        gap: 20px;
    }

    .references-marquee {
        gap: 40px;
    }

    .reference-item {
        padding: 16px 24px;
    }

    .reference-item img {
        height: 40px;
        max-width: 120px;
    }
}

/* ------------------------------------------
   CTA Section
   ------------------------------------------ */
@media (max-width: 992px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-box {
        height: 400px;
    }

    .cta-box-title {
        font-size: 28px;
    }

    .cta-box-inner {
        padding: 32px;
    }
}

/* ------------------------------------------
   FAQs Section
   ------------------------------------------ */
@media (max-width: 992px) {
    .faqs-section {
        padding: 80px 0;
    }

    .faqs-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .faqs-left {
        position: static;
        text-align: left;
    }

    .faqs-features {
        gap: 20px;
    }

    .faqs-title {
        font-size: 40px;
    }
}

/* ------------------------------------------
   Newsletter Section
   ------------------------------------------ */
@media (max-width: 992px) {
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-content {
        flex-direction: column;
    }

    .newsletter-input-wrapper input {
        min-width: 200px;
    }

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

/* ------------------------------------------
   Footer
   ------------------------------------------ */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-logo-newsletter {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-newsletter-form {
        width: 100%;
        max-width: none;
    }
}

/* ------------------------------------------
   Projects Section
   ------------------------------------------ */
@media (max-width: 992px) {
    .projects-preview-section {
        padding: 60px 0;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .project-card.project-featured {
        grid-column: 1 / 3;
        grid-row: 1;
        min-height: 320px;
    }

    .project-card:not(.project-featured) {
        min-height: 220px;
    }
}

/* ------------------------------------------
   Standard Page
   ------------------------------------------ */
@media (max-width: 992px) {
    .standard-page-section {
        padding: 60px 0;
    }

    .standard-page-content h1 {
        font-size: 28px;
    }

    .standard-page-content h2 {
        font-size: 22px;
    }
}

/* ------------------------------------------
   Breadcrumb
   ------------------------------------------ */
@media (max-width: 992px) {
    .breadcrumb-section {
        padding: 60px 0;
    }

    .breadcrumb-title {
        font-size: 32px;
    }
}

/* ------------------------------------------
   About Section
   ------------------------------------------ */
@media (max-width: 992px) {
    .about-section {
        padding: 60px 0;
    }

    .about-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-image {
        order: -1;
    }

    .about-intro-image img {
        height: 350px;
    }

    .about-intro-content h2 {
        font-size: 30px;
    }

    .about-features-section {
        padding: 60px 0;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-feature-card {
        padding: 30px;
    }

    .about-feature-header {
        gap: 16px;
        margin-bottom: 16px;
    }

    .about-feature-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .about-feature-icon i {
        font-size: 24px;
    }

    .about-feature-title {
        font-size: 16px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }
}

/* ------------------------------------------
   CTA Contact Section
   ------------------------------------------ */
@media (max-width: 992px) {
    .cta-contact-section {
        padding: 80px 0;
    }

    .cta-contact-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-contact-wrapper {
        gap: 40px;
        flex-direction: column;
    }

    .cta-contact-content {
        max-width: 100%;
    }

    .cta-contact-title {
        font-size: 32px;
    }

    .cta-contact-desc {
        font-size: 16px;
    }

    .cta-contact-actions {
        align-items: flex-start;
    }

    .cta-contact-visual {
        height: 300px;
    }
}

/* ------------------------------------------
   Solution Details
   ------------------------------------------ */
@media (max-width: 992px) {
    .solution-details {
        padding: 60px 0;
    }

    .solution-detail-text h2 {
        font-size: 32px;
    }

    .solution-detail-text > p {
        font-size: 14px;
    }

    .solution-detail-text h3 {
        font-size: 22px;
    }

    .solution-detail-text h4 {
        font-size: 18px;
    }

    .solution-works h2 {
        font-size: 32px;
    }

    .solution-kvkk-content h3 {
        font-size: 26px;
    }

    .solution-extra {
        padding: 60px 0;
    }

    .solution-works {
        padding: 60px 0;
    }

    .related-solutions {
        padding: 60px 0;
    }

    .related-solutions .section-title {
        font-size: 32px;
    }

    .solution-children {
        padding: 60px 0;
    }

    .solution-children .section-title {
        font-size: 32px;
    }
}

/* ------------------------------------------
   Mata Desk Section
   ------------------------------------------ */
@media (max-width: 992px) {
    .mata-desk {
        padding: 60px 0;
    }

    .mata-desk-content h2 {
        font-size: 32px;
    }

    .mata-desk-content > p {
        font-size: 14px;
    }

    .mata-tab-btn {
        font-size: 13px;
        padding: 10px 16px;
    }

    .mata-download-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ------------------------------------------
   Blog Page
   ------------------------------------------ */
@media (max-width: 992px) {
    .blog-page {
        padding: 60px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-image {
        height: 200px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-card-desc {
        font-size: 13px;
    }
}

/* ------------------------------------------
   Blog Sidebar
   ------------------------------------------ */
@media (max-width: 992px) {
    .blog-sidebar {
        position: relative;
        top: auto;
    }
}

/* ------------------------------------------
   Blog Details Sidebar
   ------------------------------------------ */
@media (max-width: 992px) {
    .blog-details-sidebar {
        position: relative;
        top: auto;
    }

    .blog-details-title {
        font-size: 28px;
    }

    .blog-details-meta {
        gap: 20px;
        padding: 24px;
        flex-wrap: nowrap;
    }

    .meta-items {
        gap: 16px;
    }
}

/* ------------------------------------------
   Contact / Analysis Page
   ------------------------------------------ */
@media (max-width: 992px) {
    .contact-sidebar,
    .analysis-sidebar {
        position: relative;
        top: auto;
    }

    .contact-form-wrapper,
    .analysis-form-wrapper {
        padding: 24px;
    }

    .contact-map-wrapper {
        padding: 24px;
        margin-top: 32px;
    }

    .form-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .info-icon {
        width: 44px;
        height: 44px;
    }

    .contact-map {
        height: 350px;
    }
}


/* ==========================================================================
   BREAKPOINT: 768px - Tablet Portrait
   ========================================================================== */

/* ------------------------------------------
   Headline Section
   ------------------------------------------ */
@media (max-width: 768px) {
    .headline-section {
        padding: 20px 0;
    }

    .headline-slide-item {
        height: 320px;
        border-radius: var(--border-radius);
        position: relative;
        isolation: isolate;
    }

    .headline-slide-item .headline-bg {
        z-index: 0;
    }

    .headline-slide-item .headline-bg-overlay {
        z-index: 1;
    }

    .headline-content {
        padding: 25px;
        z-index: 10 !important;
        position: absolute !important;
    }

    .headline-content h3 {
        font-size: 20px;
    }

    .headline-content p {
        font-size: 14px;
    }

    .swiper-slide {
        opacity: 0.5;
        transform: scale(0.9);
    }

    .headline-nav {
        display: none;
    }
}

/* ------------------------------------------
   Headline Slider
   ------------------------------------------ */
@media (max-width: 768px) {
    .headline-slider-wrapper {
        min-height: 400px;
        border-radius: var(--border-radius);
    }

    .headline-swiper {
        padding:0px;
    }

    .headline-slider-info {
        right: 20px;
        bottom: 20px;
        gap: 15px;
    }

    .headline-slider-counter .current-slide {
        font-size: 30px;
    }

    .headline-slider-counter .separator,
    .headline-slider-counter .total-slides {
        font-size: 15px;
    }

    .headline-slider-nav button {
        width: 38px;
        height: 38px;
        font-size: 12px;
    }
}

/* ------------------------------------------
   Blog Section
   ------------------------------------------ */
@media (max-width: 768px) {
    .blog-deluxe-grid {
        grid-template-columns: 1fr;
    }

    .blog-deluxe-card.blog-deluxe-featured {
        grid-column: 1;
        min-height: 300px;
    }

    .blog-deluxe-card:not(.blog-deluxe-featured) {
        min-height: 200px;
    }

    .blog-deluxe-content {
        padding: 20px;
    }

    .blog-deluxe-featured .blog-deluxe-title {
        font-size: 20px;
    }

    .blog-deluxe-title {
        font-size: 15px;
    }
}

/* ------------------------------------------
   FAQs Section
   ------------------------------------------ */
@media (max-width: 768px) {
    .faqs-section {
        padding: 60px 0;
    }

    .faqs-title {
        font-size: 32px;
    }

    .faqs-desc {
        font-size: 16px;
    }

    .faqs-wrapper {
        gap: 48px;
    }
}

/* ------------------------------------------
   Footer
   ------------------------------------------ */
@media (max-width: 768px) {
    .site-footer {
        padding-top: 60px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding-bottom: 40px;
    }

    .footer-brand {
        grid-column: 1;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-social-full {
        justify-content: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-bottom-social {
        justify-content: center;
    }

    .footer-logo-newsletter {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .footer-logo-text {
        width: 100%;
    }

    .footer-newsletter-form {
        width: 100%;
        min-width: auto;
    }
}

/* ------------------------------------------
   Projects Section
   ------------------------------------------ */
@media (max-width: 768px) {
    .projects-preview-section {
        padding: 50px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card.project-featured {
        grid-column: 1;
        min-height: 280px;
    }

    .project-card:not(.project-featured) {
        min-height: 200px;
    }

    .project-featured .project-title {
        font-size: 18px;
    }

    .project-content {
        padding: 20px;
    }
}

/* ------------------------------------------
   Blog Details
   ------------------------------------------ */
@media (max-width: 768px) {
    .blog-details-hero {
        height: 350px;
        margin-bottom: 40px;
    }

    .blog-details-title {
        font-size: 32px;
    }

    .blog-details-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .blog-details-sidebar {
        top: 80px;
    }
}

/* ------------------------------------------
   Contact / Analysis Page
   ------------------------------------------ */
@media (max-width: 768px) {
    .contact-form-wrapper,
    .analysis-form-wrapper {
        padding: 20px;
    }

    .contact-map-wrapper {
        padding: 20px;
        margin-top: 28px;
    }

    .form-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .analysis-title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .analysis-desc {
        font-size: 14px;
    }

    .feature-item {
        padding: 12px;
        gap: 12px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .feature-content h6 {
        font-size: 14px;
    }

    .form-inner input,
    .form-inner textarea {
        font-size: 13px;
    }

    .map-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .contact-map {
        height: 300px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .social-link-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
}


/* ==========================================================================
   BREAKPOINT: 576px - Mobile
   ========================================================================== */

/* ------------------------------------------
   Header
   ------------------------------------------ */
@media (max-width: 576px) {
    .header-inner {
        height: 60px;
    }

    .header-logo img {
        height: 32px;
    }

    .main-nav {
        top: 60px;
    }
}

/* ------------------------------------------
   Headline Section
   ------------------------------------------ */
@media (max-width: 576px) {
    .headline-section {
        padding: 15px 0;
    }

    .headline-swiper {
        padding: 0px;
    }

    .headline-slide-item {
        height: 280px;
        border-radius: var(--border-radius);
        position: relative;
        isolation: isolate;
    }

    .headline-slide-item .headline-bg {
        z-index: 0;
    }

    .headline-slide-item .headline-bg-overlay {
        z-index: 1;
    }

    .headline-content {
        top: 10%;
        padding: 18px;
        z-index: 10 !important;
        position: absolute !important;
    }

    .headline-content h3 {
        font-size: 17px;
    }

    .headline-content p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .headline-link {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ------------------------------------------
   Headline Slider
   ------------------------------------------ */
@media (max-width: 576px) {
    .headline-slider-wrapper {
        min-height: 380px;
        border-radius: var(--border-radius);
    }

    .headline-swiper {
        padding: 0px;
    }

    .headline-slider-info {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }

    .headline-slider-counter .current-slide {
        font-size: 26px;
    }

    .headline-slider-counter .separator,
    .headline-slider-counter .total-slides {
        font-size: 13px;
    }

    .headline-slider-nav button {
        width: 34px;
        height: 34px;
    }
}

/* ------------------------------------------
   Services Section
   ------------------------------------------ */
@media (max-width: 576px) {
    .services-section {
        padding: 40px 0;
    }

    .service-card {
        padding: 20px;
    }

    .service-title {
        font-size: 16px;
    }
}
/* ------------------------------------------
   Server Section
   ------------------------------------------ */

@media (max-width: 576px) {
    .server-card-item .server-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .service-link i {
     color: var(--white-color);
    }
}

/* ------------------------------------------
   Related Services
   ------------------------------------------ */
@media (max-width: 576px) {
    .related-services {
        padding: 40px 0;
    }

    .section-title {
        font-size: 26px;
    }

    .section-desc {
        font-size: 14px;
    }
}

/* ------------------------------------------
   Services Footer Card
   ------------------------------------------ */
@media (max-width: 576px) {
    .services-footer-card {
        padding: 20px;
        min-height: auto;
    }

    .btn-view-all {
        width: 100%;
        justify-content: center;
    }
}

/* ------------------------------------------
   Blog Section
   ------------------------------------------ */
@media (max-width: 576px) {
    .blog-preview-section {
        padding: 40px 0;
    }

    .blog-deluxe-card.blog-deluxe-featured {
        min-height: 260px;
    }

    .blog-deluxe-card:not(.blog-deluxe-featured) {
        min-height: 180px;
    }

    .blog-deluxe-content {
        padding: 16px;
    }

    .blog-deluxe-featured .blog-deluxe-title {
        font-size: 18px;
    }

    .blog-deluxe-title {
        font-size: 14px;
    }

    .blog-deluxe-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .blog-deluxe-arrow {
        width: 36px;
        height: 36px;
        top: 14px;
        right: 14px;
    }

    .blog-preview-footer {
        margin-top: 30px;
    }
}

/* ------------------------------------------
   References Section
   ------------------------------------------ */
@media (max-width: 576px) {
    .references-section {
        padding: 40px 0;
    }

    .references-marquee-container {
        gap: 16px;
    }

    .references-marquee {
        gap: 30px;
    }

    .reference-item {
        padding: 12px 20px;
    }

    .reference-item img {
        height: 32px;
        max-width: 100px;
    }
}

/* ------------------------------------------
   CTA Section
   ------------------------------------------ */
@media (max-width: 576px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-box {
        height: 350px;
    }

    .cta-box-inner {
        padding: 24px;
    }

    .cta-box-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .cta-box-icon i {
        font-size: 28px;
    }

    .cta-box-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .cta-box-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cta-box-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ------------------------------------------
   FAQs Section
   ------------------------------------------ */
@media (max-width: 576px) {
    .faqs-section {
        padding: 40px 0;
    }

    .faqs-title {
        font-size: 28px;
    }

    .faqs-desc {
        font-size: 15px;
    }

    .faqs-cta-btn {
        width: 100%;
        justify-content: center;
    }

    .faq-question {
        padding: 16px 0;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-answer p {
        padding: 0 0 16px 0;
        font-size: 14px;
    }

    .faqs-feature span {
        font-size: 15px;
    }
}

/* ------------------------------------------
   Newsletter Section
   ------------------------------------------ */
@media (max-width: 576px) {
    .newsletter-section {
        padding: 40px 0;
    }

    .newsletter-icon {
        width: 60px;
        height: 60px;
    }

    .newsletter-icon i {
        font-size: 24px;
    }

    .newsletter-text h3 {
        font-size: 20px;
    }

    .newsletter-text p {
        font-size: 14px;
    }

    .newsletter-input-wrapper {
        flex-direction: column;
        padding: 10px;
    }

    .newsletter-input-wrapper input {
        min-width: 100%;
        text-align: center;
    }

    .newsletter-input-wrapper button {
        width: 100%;
        justify-content: center;
    }
}

/* ------------------------------------------
   Footer
   ------------------------------------------ */
@media (max-width: 576px) {
    .site-footer {
        padding-top: 40px;
    }

    .footer-main {
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-logo img {
        height: 38px;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .footer-social a {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .copyright,
    .footer-bottom-links a {
        font-size: 13px;
    }
}

/* ------------------------------------------
   Standard Page
   ------------------------------------------ */
@media (max-width: 576px) {
    .standard-page-section {
        padding: 40px 0;
    }

    .standard-page-content h1 {
        font-size: 24px;
    }

    .standard-page-content h2 {
        font-size: 20px;
    }

    .standard-page-content h3 {
        font-size: 18px;
    }

    .standard-page-content p {
        font-size: 15px;
    }
}

/* ------------------------------------------
   Breadcrumb
   ------------------------------------------ */
@media (max-width: 576px) {
    .breadcrumb-section {
        padding: 50px 0;
    }

    .breadcrumb-title {
        font-size: 26px;
    }

    .breadcrumb-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .breadcrumb-nav {
        flex-wrap: wrap;
        gap: 8px;
    }

    .breadcrumb-nav a,
    .breadcrumb-nav span {
        font-size: 13px;
    }
}

/* ------------------------------------------
   About Section
   ------------------------------------------ */
@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }

    .about-intro-content h2 {
        font-size: 26px;
    }

    .about-intro-image img {
        height: 280px;
    }

    .about-features-section {
        padding: 40px 0;
    }

    .about-feature-card {
        padding: 24px;
    }

    .about-feature-header {
        gap: 12px;
        margin-bottom: 12px;
    }

    .about-feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }

    .about-feature-icon i {
        font-size: 22px;
    }

    .about-feature-title {
        font-size: 15px;
    }

    .about-feature-desc {
        font-size: 13px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .about-stat-number {
        font-size: 32px;
    }
}

/* ------------------------------------------
   CTA Contact Section
   ------------------------------------------ */
@media (max-width: 576px) {
    .cta-contact-section {
        padding: 60px 0;
    }

    .cta-contact-title {
        font-size: 26px;
    }

    .cta-contact-btn {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
    }

    .cta-contact-visual {
        height: 250px;
    }
}

/* ------------------------------------------
   Solution Details
   ------------------------------------------ */
@media (max-width: 576px) {
    .solution-details {
        padding: 40px 0;
    }

    .solution-detail-content {
        gap: 24px;
    }

    .solution-detail-text h2 {
        font-size: 26px;
    }

    .solution-detail-text > p {
        font-size: 14px;
    }

    .solution-detail-text h3 {
        font-size: 20px;
        margin-top: 20px;
    }

    .solution-detail-text h4 {
        font-size: 18px;
    }

    .solution-extra {
        padding: 40px 0;
    }

    .solution-kvkk-content h3 {
        font-size: 22px;
    }

    .solution-kvkk-content p {
        font-size: 14px;
    }

    .solution-works {
        padding: 40px 0;
    }

    .solution-works h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .related-solutions {
        padding: 40px 0;
    }

    .related-solutions .section-title {
        font-size: 26px;
    }

    .related-solutions .section-desc {
        font-size: 14px;
    }

    .solution-children {
        padding: 40px 0;
    }

    .solution-children .section-title {
        font-size: 26px;
    }

    .solution-children .section-desc {
        font-size: 14px;
    }
}

/* ------------------------------------------
   Mata Desk Section
   ------------------------------------------ */
@media (max-width: 576px) {
    .mata-desk {
        padding: 40px 0;
    }

    .mata-desk-content h2 {
        font-size: 26px;
    }

    .mata-desk-content > p {
        font-size: 14px;
    }

    .mata-desk-content {
        gap: 24px;
    }

    .mata-desk-tabs {
        gap: 24px;
    }

    .mata-desk-tab-buttons {
        gap: 8px;
    }

    .mata-tab-btn {
        font-size: 12px;
        padding: 10px 14px;
        gap: 6px;
    }

    .mata-os-icon {
        width: 16px;
        height: 16px;
    }

    .mata-tab-content {
        padding: 20px;
    }

    .mata-tab-content h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .mata-tab-content p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .mata-download-links {
        gap: 12px;
    }

    .mata-download-btn {
        padding: 10px 16px;
        font-size: 12px;
        flex: 1;
        justify-content: center;
    }
}

/* ------------------------------------------
   Blog Page
   ------------------------------------------ */
@media (max-width: 576px) {
    .blog-page {
        padding: 40px 0;
    }

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

    .blog-search-input {
        max-width: 100%;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .blog-card-image {
        height: 180px;
    }

    .blog-card-content {
        padding: 16px;
        gap: 12px;
    }

    .blog-card-badge {
        font-size: 11px;
        padding: 5px 10px;
    }

    .blog-card-meta {
        font-size: 11px;
        gap: 12px;
    }

    .blog-card-title {
        font-size: 15px;
    }

    .blog-card-desc {
        font-size: 12px;
    }

    .blog-card-link {
        font-size: 12px;
    }
}

/* ------------------------------------------
   Blog Sidebar & Widgets
   ------------------------------------------ */
@media (max-width: 576px) {
    .blog-widget {
        padding: 16px;
    }

    .blog-widget-title {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .blog-categories-list {
        gap: 10px;
    }

    .blog-category-link {
        padding: 9px 12px;
        font-size: 13px;
    }

    .pagination a,
    .pagination span {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .blog-details-hero {
        height: 280px;
        margin-bottom: 30px;
    }

    .blog-details-title {
        font-size: 26px;
        margin: 20px 0 16px 0;
    }

    .blog-details-body {
        font-size: 15px;
        line-height: 1.8;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

/* ------------------------------------------
   Blog Details Page
   ------------------------------------------ */
@media (max-width: 576px) {
    .blog-details-page {
        padding: 40px 0;
    }

    .blog-details-title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .blog-details-meta {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        align-items: flex-start;
    }

    .author-section {
        width: 100%;
    }

    .meta-items {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .meta-item {
        font-size: 13px;
    }

    .blog-details-body {
        font-size: 14px;
    }

    .tag-item {
        font-size: 12px;
    }
}

/* ------------------------------------------
   Contact / Analysis Page
   ------------------------------------------ */
@media (max-width: 576px) {
    .contact-sidebar,
    .analysis-sidebar {
        gap: 16px;
    }

    .contact-form-wrapper,
    .analysis-form-wrapper {
        padding: 16px;
    }

    .analysis-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .analysis-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .analysis-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .feature-item {
        padding: 10px;
        gap: 10px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .feature-content h6 {
        font-size: 13px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-item h6 {
        font-size: 14px;
    }

    .step-desc {
        font-size: 12px;
    }

    .contact-map-wrapper {
        padding: 16px;
        margin-top: 24px;
    }

    .form-title {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .form-title i {
        font-size: 20px;
    }

    .form-inner label {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .form-inner input,
    .form-inner textarea {
        padding: 10px 12px;
        font-size: 12px;
    }

    .map-title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .map-title i {
        font-size: 18px;
    }

    .contact-map {
        height: 250px;
    }

    .info-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .contact-info-item {
        gap: 12px;
        padding-bottom: 16px;
    }

    .info-content h6 {
        font-size: 10px;
    }

    .info-link {
        font-size: 13px;
    }

    .info-text {
        font-size: 12px;
    }

    .social-links {
        gap: 10px;
    }

    .social-link-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
    }
}
