/* Main CSS for Paytr Website */

:root {
    --primary-blue: #1197ed;
    --dark-blue: #0a81d1;
    --navy-blue: #0f2d6a;
    --white: #ffffff;
    --yellow: #FFD84D;
    --light-blue: #3EE3FD;
    --orange: #FF7E36;
    --light-gray: #f8f9fa;
    --topbar-height: 45px;
    --navbar-height: 70px;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #F6F7F9;
    padding-top: calc(var(--topbar-height) + var(--navbar-height)); /* Top bar ve navbar'ın yüksekliği kadar padding eklendi */
}

.modal-overlay {
    position: fixed;
    top: 0px;
    left: 0px; 
    width: 100%;
    height: 100vh;
    background: #0000004a;
    z-index: -1;
}

.modal-body {
    overflow-y: scroll !important;
    max-height: 80vh !important;
}

/* Container */
.container {
    max-width: 1200px !important;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 991px) {
    .container {
        width: 100%;
    }
}

/* Fixed Header Styles */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.form-check-input[type=checkbox] {
    border: 1px solid #000;
}

/* Top Bar Styles */
.top-bar {
    background: #1b81c4;
    padding: 10px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1010;
    height: var(--topbar-height);
}

.top-bar .top-contact {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
}

.top-bar .top-contact i {
    font-size: 16px;
    margin-right: 8px;
}

.top-bar .top-links {
    display: flex;
    align-items: center;
}

.top-bar .top-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    margin-right: 20px;
    transition: opacity 0.3s;
    font-weight: 500;
}

.top-bar .top-contact:hover,
.top-bar .top-link:hover {
    opacity: 0.8;
    color: var(--white);
}

.top-bar .top-link:not(:last-child) {
    padding-right: 3rem;
    border-right: 1px solid rgba(217, 217, 217, 0.3);
    margin-right: 1rem;
    margin-left: 1rem;
}

.top-bar .lang-dropdown {
    position: relative;
    display: inline-block;
}

.top-bar .lang-btn {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.top-bar .lang-btn:hover {
    color: var(--white);
    opacity: 0.8;
}

.chevron-small {
    font-size: 10px;
}

.top-bar .lang-dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 8px;
    right: 0;
    top: 30px;
    overflow: hidden;
}

.top-bar .lang-dropdown-content a {
    color: #333;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: background 0.3s;
}

.top-bar .lang-dropdown-content a:hover {
    background-color: var(--light-gray);
}

.top-bar .lang-dropdown:hover .lang-dropdown-content {
    display: block;
}


/* Main Navbar Styles */
.main-navbar {
    background: #1b81c4;
    padding: 15px 0;
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--navbar-height); 
}

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

.main-navbar .navbar-brand {
    display: flex;
    align-items: center;
    position: relative;
}

.main-navbar .logo-img {
    height: 20px;
    position: relative;
}

.main-navbar .anniversary {
    position: absolute;
    right: -20px;
    top: 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    background: var(--primary-blue);
    border-radius: 4px;
    padding: 2px 5px;
}

.main-navbar .navbar-menu {
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.main-navbar .menu-item {
    position: relative;
    margin-right: 30px;
}

.main-navbar .menu-link {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 5px 0;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}

.main-navbar .menu-link:hover {
    opacity: 0.8;
    color: var(--white);
}

.main-navbar .dropdown-toggle::after {
    display: none;
}

.main-navbar .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
    margin-top: 15px;
    border: none;
}

.main-navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 16px;
    height: 16px;
    background-color: var(--white);
    transform: rotate(45deg);
    border-radius: 3px;
}

.main-navbar .dropdown-item {
    color: #333;
    font-size: 14px;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    transition: background 0.3s, padding-left 0.3s;
    position: relative;
}

.main-navbar .dropdown-item:hover {
    background-color: var(--light-gray);
    padding-left: 25px;
}

.main-navbar .dropdown-item.active {
    background-color: rgba(17, 151, 237, 0.05);
    color: var(--primary-blue);
    font-weight: 500;
}

.main-navbar .dropdown-item.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-blue);
}

.main-navbar .menu-item:hover .dropdown-menu {
    display: block;
}

.main-navbar .navbar-buttons {
    display: flex;
    align-items: center;
}

.main-navbar .btn {
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.main-navbar .btn-outline {
    border-radius: 0%;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.6);
    margin-right: 10px;
}

.main-navbar .btn-outline:hover {
    color: var(--white);
    border-color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.main-navbar .btn-primary {
    border-radius: 0%;
    background-color: var(--white);
    color: var(--primary-blue);
    border: none;
}

.main-navbar .btn-primary:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px); 
}

.main-navbar .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.main-navbar .menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin-bottom: 5px;
    border-radius: 1px;
    transition: all 0.3s;
}

.main-navbar .menu-toggle span:last-child {
    margin-bottom: 0;
}

.mobile-menu-buttons {
    display: none;
}



/* Responsive Navbar */
@media (max-width: 991px) {
    .top-bar {
        display: none !important;
    }

    .main-navbar {
        top: 0px !important;
        height: max-content;
    }

    .mobile-menu-buttons {
        display: flex;
        justify-content: center;
        align-items: center; 
        padding: 10px; 
        border-radius: 8px;
    }
    .mobile-menu-buttons a {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .main-navbar .navbar-menu, .main-navbar .navbar-buttons {
        display: none;
    }
    
    .main-navbar .menu-toggle {
        display: flex;
    }
    
    .main-navbar .top-links {
        flex-wrap: wrap;
    }
    
    .main-navbar .top-link {
        margin-bottom: 5px;
    }
}

/* Hero Section Styles */
.hero-section {
    padding-top: 40px;
    background: linear-gradient(180deg, #1b81c4 0, #07b7f6 100%);
    color: var(--white);
    overflow: hidden;
    position: relative;
    height: 670px;
}

.hero-section .hero-slider .owl-dots {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
    position: relative;
    width: 100%;
    bottom: auto;
    left: auto;
}

.hero-section .hero-slide {
    position: relative;
}

.hero-section .hero-content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.hero-section .hero-subtitle {
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 1.1;
}

.hero-section .hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-section .hero-description {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.5;
}

.hero-section .hero-hashtag {
    font-weight: 700;
    color: var(--white);
}

.hero-section .hero-btn {
    display: inline-block;
    background-color: #223252;
    color: var(--white);
    padding: 12px 35px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.hero-section .hero-btn:hover {
    background-color: #172440;
    transform: translateY(-3px);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Custom Dots Styles */
.hero-section .custom-dots {
    display: flex;
    margin-top: 60px;
    margin-bottom: 30px;
}

.hero-section .custom-dots .dot {
    width: 80px;
    height: 6px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    margin-right: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-section .custom-dots .dot.active {
    background-color: var(--white);
    width: 60px;
}

/* Hero Image Styles */
.hero-section .hero-image {
    position: relative;
}

.hero-section .hero-img-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section .hero-img-wrapper img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-section .hero-img-wrapper img,
    .owl-carousel .owl-item .hero-img-wrapper img {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 70%;
        margin: 0 auto;
    }

    .hero-section .hero-features {
        display: none;
    }
}

/* Feature Bubbles */
.hero-section .hero-features {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}

.hero-section .feature-bubble {
    position: absolute;
    padding: 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.hero-section .bubble-blue {
    background-color: var(--light-blue);
    color: #223252;
    top: 15%;
    left: 15%;
    transform: rotate(3deg);
}

.hero-section .bubble-yellow {
    background-color: var(--yellow);
    color: #223252;
    bottom: 20%;
    right: 15%;
    transform: rotate(-3deg);
}

/* App Download Buttons */
.hero-section .app-buttons {
    display: flex;
}

.hero-section .app-buttons a {
    margin-right: 15px;
    margin-bottom: 15px;
}

.hero-section .app-btn {
    width: 200px;
    display: flex;
    align-items: center;
    background-color: #15202c;
    color: white;
    border-radius: 12px;
    padding: 12px 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.hero-section .app-btn:hover {
    background-color: #0d1620;
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
}

.hero-section .app-btn i {
    font-size: 24px;
    margin-right: 10px;
}

.hero-section .app-btn .btn-text {
    text-align: left;
}

.hero-section .app-btn .small-text {
    font-size: 12px;
    display: block;
    opacity: 0.8;
}

.hero-section .app-btn .big-text {
    font-size: 16px;
    font-weight: 600;
}

/* Hero Image and Shape Elements */
.hero-section .hero-img {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-section .hero-phone {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
}

.hero-section .shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-section .shape {
    position: absolute;
}

.hero-section .shape-yellow {
    background-color: var(--yellow);
    width: 60px;
    height: 60px;
    border-radius: 5px;
    right: 30%;
    top: 10%;
    transform: rotate(15deg);
}

.hero-section .shape-blue {
    background-color: var(--light-blue);
    width: 40px;
    height: 40px;
    border-radius: 5px;
    left: 10%;
    bottom: 30%;
    transform: rotate(-10deg);
}

.hero-section .shape-orange {
    background-color: var(--orange);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    right: 10%;
    bottom: 20%;
}

/* Owl Carousel Custom Styles */
.hero-section .owl-carousel .owl-dots {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
    position: relative;
    width: 100%;
    bottom: auto;
    left: auto;
}

.hero-section .owl-carousel .owl-dot {
    width: 30px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 0;
    margin: 0 5px 0 0;
    transition: all 0.3s;
}

.hero-section .owl-carousel .owl-dot.active {
    background-color: var(--white);
    transform: none;
    width: 50px;
}

.hero-section .hero-content .owl-dots {
    margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-section {
        height: max-content;
    }
    
    .hero-section .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section .hero-subtitle {
        font-size: 2rem;
    }

    .hero-section .feature-bubble {
        padding: 10px;
        font-size: 12px;
    }
    .hero-section .hero-image{
        display: none;
    }

    .hero-section .hero-content {
        width: 100%;
    }
    .hero-section .custom-dots {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-section {
        height: max-content;
    }
    
    .hero-section .container {
        max-width: 100% !important;
        width: 100%;
    }
    
    .hero-section .hero-title {
        font-size: 2rem;
    }
    
    .hero-section .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-section .app-buttons {
        display: flex;
        flex-direction: column;
    }
    
    .hero-section .app-buttons a {
        margin-right: 0;
    }
    
    .hero-section .hero-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .hero-section .feature-bubble {
        font-size: 10px;
        padding: 8px;
    }
    
    .hero-section .bubble-blue {
        top: 10%;
        left: 0;
    }
    
    .hero-section .bubble-yellow {
        bottom: 15%;
        right: 5%;
    }
}

/* Footer Styles */
.footer {
    background-color: #0f2d6a;
    color: #ffffff;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer .footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer .footer-logo img { 
    height: 26px; 
    filter: brightness(0) invert(1);
}
.footer .footer-bulletin-input-group {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer .footer-bulletin-input-group.form-control {
    border-radius: 100px;
}












.footer .newsletter-signup {
    text-align: right;
    padding: 15px 0;
}

.footer .newsletter-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    font-weight: 500;
}

.footer .newsletter-form .input-group {
    display: flex;
    align-items: center;
    max-width: 450px;
    margin-left: auto;
}

.footer .newsletter-form .form-control {
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 15px;
    font-size: 14px;
    background: #fff;
}

.footer .newsletter-form .form-control:focus {
    border-color: #0d6efd;
    outline: none;
    box-shadow: none;
}

.footer .newsletter-form .btn {
    height: 40px;
    padding: 0 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    background: #0d6efd;
    border: none;
}

@media (max-width: 768px) {
    .footer .newsletter-signup {
        text-align: center;
    }
    
    .footer .newsletter-form .input-group {
        margin: 0 auto;
    }
}























.footer .social-icons {
    display: flex; 
    gap: 15px;
}

.footer .social-icon {
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s;
}

.footer .social-icon:hover {
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* .footer .footer-main {
    margin-bottom: 40px;
} */

.footer .footer-col {
    margin-bottom: 30px;
}

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

.footer .footer-subtitle {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.footer .footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer .footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer .footer-links-group {
    margin-bottom: 25px;
}

.footer .footer-certificates {
    padding: 30px 0;
}


@media (max-width: 991px) {
    .footer-certificates .row {
        flex-direction: column;
        margin-top: 20px;
    }
    .footer-certificates .row .text-end{
        text-align: start !important;
    }
    .footer-certificates .row .col-md-5{
        margin: 0 !important;
    }
    .footer-certificates .row .col-md-5 a{
        width: 100%;
        display: flex;
        align-items: start;
        justify-content: start;
    }

}
    


.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer .footer-nav {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-nav li {
    margin-right: 20px;
    margin-bottom: 10px;
}

.footer .footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer .footer-nav a:hover {
    color: #ffffff;
}

.footer .copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-align: right;
    margin: 0;
}

@media (max-width: 991px) {
    .footer .social-icons {
        justify-content: flex-start;
        margin-top: 20px;
    }
    
    .footer .cert-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .footer .copyright {
        text-align: left;
        margin-top: 20px;
    }
} 

.achievement-section{
    padding: 120px 0px;
}

.achievement-section .achievement-icons { 
    height: 114px;
}

.achievement-section .achievement-icons .icon {
    position: relative;
    background: url("../img/about-us/Vector.webp");
    width: 165px;
    gap: .7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-repeat: no-repeat;
    justify-content: center;
}

.achievement-section .achievement-icons .icon div {
    font-weight: 600;
    z-index: 3;
    color: #0F2666;
    font-size: 36px;
    line-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.achievement-section .achievement-icons .icon p {
    font-weight: 400;
    color: #0F2666;
    font-size: 18px;
    line-height: 29px;
}

.achievement-section .achievement-icons .icon:before {
    background: url("../img/about-us/orange-dot-single.webp");
    position: absolute;
    background-repeat: no-repeat;
    top: 40px;
    z-index: 2;
    left: 160px;
    content: "";
    display: block;
    width: 23px;
    height: 23px;
    background-size: 100%;
}

.achievement-section .achievement-icons .icon:after {
    background: url("../img/about-us/blue-dot-single.webp");
    position: absolute;
    top: 0;
    left: -25px;
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background-size: 100%;
    background-repeat: no-repeat;
}

@media (max-width: 1200px) {
    .achievement-section .achievement-icons .row { 
        width: 80%;
    }
}

@media (max-width: 991px) {

    .achievement-section {
        padding: 50px 0px;
        width: 100%;
    }

    .achievement-section .achievement-icons .row {
        display: flex; 
        align-items: center;
        justify-content: center; 
    }

 
}

@media (max-width: 767px) {

    .achievement-section {
        padding: 40px 0px;
    }

    .achievement-section .achievement-icons {
        height: max-content;
        display: flex;
        justify-content: center;
    }

    .achievement-section .achievement-icons .row {
        display: flex; 
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .achievement-section .achievement-icons .row .col-md-6 {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .achievement-section .achievement-icons .row .col-md-6:last-child {
        margin-bottom: 0;
    }

    .achievement-section .achievement-icons .icon {
        text-align: center;
        width: 200px;
    }

}

/* Payment Channel Styles */
.payment-channel{
    padding: 120px 0px;
}

.payment-channel .payment-channel-head {
    text-align: center;
    max-width: 39rem;
    margin: 0 auto 60px auto;
}

.payment-channel .payment-channel-head .section-title{
    color: #0F2666;
    font-size: 44px;
    line-height: 56px;
    font-weight: 700;
    text-align: center;
}

.payment-channel .payment-channel-head .sub-title {
    color: #0F2666;
    font-size: 22px;
    font-weight: 400;
    line-height: 35px;
}

/* POS Products Slider Section */
.pos-products-section {
    padding: 80px 0;
    background: #F6F7F9;
}

.pos-products-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    overflow: break-word;
}

.pos-products-section .section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px; 
}

.pos-products-section .section-header .sub-title {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

.pos-products-section .text-primary {
    color: var(--primary-blue) !important;
}

.pos-products-section .pos-slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.pos-products-section .pos-slider {
    padding: 0 20px;
}

.pos-products-section .pos-card {
    background: var(--white);
    border-radius: 20px;
    margin: 0 15px; 
    transition: all 0.3s ease;
    height: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.pos-products-section .pos-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.pos-products-section .pos-card:hover {
    cursor: pointer;
}

.pos-products-section .pos-card-image {
    position: relative;
    z-index: 2;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 0;
    overflow: hidden;
}

.pos-products-section .pos-device-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.15));
}

.pos-products-section .pos-card-content {
    position: relative;
    padding: 0 25px 25px;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pos-products-section .pos-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.2;
}

.pos-products-section .pos-title span {
    font-weight: 400;
}

.pos-products-section .pos-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
    flex: 1;
}

.pos-products-section .pos-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.pos-products-section .pos-arrow i {
    color: var(--white);
    font-size: 12px;
    transition: all 0.3s ease;
}
 

.pos-products-section .pos-card:hover .pos-arrow i {
    transform: rotate(-30deg); 
}

/* Slider Navigation */
.pos-products-section .pos-slider-nav {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.pos-products-section .pos-nav-buttons {
    display: flex;
    gap: 10px;
}

.pos-products-section .pos-nav-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #f8f9fa;
    border-radius: 50%;
    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);
}

.pos-products-section .pos-nav-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.pos-products-section .pos-nav-btn i {
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.pos-products-section .pos-nav-btn:hover i {
    color: var(--white);
}

.pos-products-section .pos-nav-line {
    flex: 1;
    height: 1px;
    background: #e0e0e0;
    margin-left: 20px;
}

/* Owl Carousel Custom Styles for POS Slider */
.pos-products-section .pos-slider.owl-carousel .owl-dots {
    display: none;
}

.pos-products-section .pos-slider.owl-carousel .owl-nav {
    display: none;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .pos-products-section .pos-slider-container {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .pos-products-section {
        padding: 60px 0;
    }
    
    .pos-products-section .section-header .section-title {
        font-size: 2rem;
    }
    
    .pos-products-section .pos-card {
        height: 320px;
        margin: 0 10px;
    }
    
    .pos-products-section .pos-slider-nav {
        bottom: -50px;
    }
}

@media (max-width: 767px) {
    .pos-products-section {
        padding: 40px 0;
    }
    
    .pos-products-section .section-header {
        margin-bottom: 40px;
    }
    
    .pos-products-section .section-header .section-title {
        font-size: 1.8rem;
    }
    
    .pos-products-section .pos-card {
        height: 300px;
        margin: 0 5px;
        padding: 0;
    }
    
    .pos-products-section .pos-card-image {
        height: 120px;
    }
    
    .pos-products-section .pos-card-content {
        padding: 0 20px 20px;
    }
    
    .pos-products-section .pos-title {
        font-size: 1.1rem;
    }
    
    .pos-products-section .pos-description {
        font-size: 0.85rem;
    }
    
    .pos-products-section .pos-slider-nav {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        justify-content: center;
        margin-top: 30px;
        gap: 10px;
    }
    
    .pos-products-section .pos-nav-line {
        display: none;
    }
}

/* Banner Section */
.banner-section {
    padding: 80px 0;
    background: #F6F7F9;
}

.banner-section .banner-container {
    background: linear-gradient(180deg, #1b81c4 0, #07b7f6 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 22rem;
}

.banner-section .banner-content {
    flex: 1;
    max-width: 600px;
    padding: 60px;
    z-index: 2;
    position: relative;
}

.banner-section .banner-text {
    color: var(--white);
}

.banner-section .banner-title {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.banner-section .banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.95;
    color: var(--white);
}

.banner-section .banner-btn {
    display: inline-block;
    background-color: #0d47a1;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease; 
}

.banner-section .banner-btn:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
    color: var(--white); 
}

.banner-section .banner-image {
    flex: 1;
    max-width: 500px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.banner-section .banner-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 3;
    bottom: -40px;
    right: 0px;
}

.banner-section .banner-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.banner-section .banner-shapes .shape {
    position: absolute;
    opacity: 0.8;
}

.banner-section .shape-yellow-circle {
    background-color: #ffd54f;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: float 3s ease-in-out infinite;
}

.banner-section .shape-orange-square {
    background-color: #ff7043;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    bottom: 30%;
    left: 5%;
    transform: rotate(15deg);
    animation: float 4s ease-in-out infinite reverse;
}

.banner-section .shape-blue-square {
    background-color: #42a5f5;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    top: 60%;
    right: 25%;
    transform: rotate(-20deg);
    animation: float 3.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .banner-section .banner-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        min-height: auto;
    }
    
    .banner-section .banner-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .banner-section .banner-title {
        font-size: 2.2rem;
    }
    
    .banner-section .banner-image {
        max-width: 100%;
    }
    
    .banner-section .shape-yellow-circle {
        width: 60px;
        height: 60px;
        top: 10%;
        right: 5%;
    }
    
    .banner-section .shape-orange-square {
        width: 45px;
        height: 45px;
        bottom: 20%;
        left: 5%;
    }
    
    .banner-section .shape-blue-square {
        width: 30px;
        height: 30px;
        top: 50%;
        right: 15%;
    }
}

@media (max-width: 767px) {
    .banner-section {
        padding: 60px 0;
    }
    
    .banner-section .banner-container {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .banner-section .banner-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .banner-section .banner-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .banner-section .banner-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .banner-section .shape-yellow-circle,
    .banner-section .shape-orange-square,
    .banner-section .shape-blue-square {
        opacity: 0.6;
    }
}

/* For Developers Section */
.for-developers {
    padding: 80px 0;
    background: #F6F7F9;
}

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

.for-developers .developers-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f2d6a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.for-developers .developers-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.for-developers .developers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.for-developers .developer-card {
    display: flex;
    gap: 15px;
    background: #fff;
    border-radius: 30px;
    flex: 1 0 50%;
    max-height: 260px;
    cursor: pointer;
}

.for-developers .card-image {
    flex-shrink: 0;
    max-width: 210px;
    height: 100%;
    overflow: hidden;
}

.for-developers .card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.for-developers .card-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 23px;
    color: #0f2666;
}

.for-developers .card-description {
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    margin: 16px 0;
}

.for-developers .card-link {
    color: #1197ed;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.for-developers .card-link:hover {
    color: #0a81d1;
    transform: translateX(3px);
}

.for-developers .card-link i {
    font-size: 12px;
    transition: all 0.3s ease;
}

.for-developers .dev-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .for-developers .developers-content {
        gap: 30px;
    }
    
    .for-developers .developer-card {
        padding: 30px;
        gap: 30px;
    }
    
    .for-developers .card-image {
        width: 220px;
        height: 160px;
    }
    
    .for-developers .card-title {
        font-size: 1.4rem;
    }
    
    .for-developers .card-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 991px) {
    .for-developers {
        padding: 80px 0;
    }
    
    .for-developers .developers-header {
        margin-bottom: 60px;
    }
    
    .for-developers .developers-title {
        font-size: 2.2rem;
    }
    
    .for-developers .developers-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .for-developers .developer-card {
        flex-direction: row;
        text-align: left;
        padding: 30px;
        gap: 25px;
    }
    
    .for-developers .card-image {
        width: 200px;
        height: 150px;
    }
}

@media (max-width: 767px) {
    .for-developers {
        padding: 60px 0;
    }
    
    .for-developers .developers-header {
        margin-bottom: 40px;
    }
    
    .for-developers .developers-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .for-developers .developers-subtitle {
        font-size: 1rem;
    }
    
    .for-developers .developers-content {
        gap: 25px;
    }
    
    .for-developers .developer-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 20px;
    }
    
    .for-developers .card-image {
        width: 100%;
        max-width: 280px;
        height: 180px;
        margin: 0 auto;
    }
    
    .for-developers .card-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .for-developers .card-description {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}


/* News Section */
.news-section {
    padding: 80px 0; 
}

.news-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-section .section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f2d6a;
    margin-bottom: 15px;
}

.news-section .section-header .sub-title {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

.news-section .section-content .text-primary {
    color: var(--primary-blue) !important;
}

.news-section .section-content .testimonial-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-section .section-content .testimonial-content {
    flex: 1;
    max-width: 600px;
    position: relative;
}

.news-section .section-content .testimonial-text {
    position: relative;
    padding-right: 80px;
}

.news-section .section-content .testimonial-title {
    font-size: 2rem;
    font-weight: 500;
    color: #0f2d6a;
    margin-bottom: 30px;
    line-height: 1.3;
}

.news-section .section-content .testimonial-quote {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-style: normal;
    text-align: justify;
}

.news-section .section-content .quote-icon {
    position: absolute;
    top: 0px;
    right: -580px;
    width: 80px;
    height: 80px;
    background: #ff7043;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 112, 67, 0.3);
}

.news-section .section-content .quote-icon i {
    font-size: 32px;
    color: white;
}

.news-section .section-content .testimonial-image {
    flex: 1;
    max-width: 500px;
}

.news-section .section-content .testimonial-img {
    width: 100%;
    height: auto;
    border-radius: 16px; 
}

/* Brands Section */
.news-section .section-brands { 
    padding: 40px 0; 
}

.news-section .section-brands .brands-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 100%;
    overflow: hidden;
}

.news-section .section-brands .brand-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: all 0.3s ease; 
}
 

.news-section .section-brands .brand-item img {
    max-height: 80px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain; 
    transition: all 0.3s ease;
}
 

/* Responsive Styles */
@media (max-width: 991px) {
    .news-section {
        padding: 60px 0;
    }
    
    .news-section .section-content .testimonial-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .news-section .section-content .testimonial-content {
        max-width: 100%;
    }
    
    .news-section .section-content .testimonial-text {
        padding-right: 60px;
    }
    
    .news-section .section-content .testimonial-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .news-section .section-content .testimonial-quote {
        font-size: 0.95rem;
    }
    
    .news-section .section-content .quote-icon {
        width: 60px;
        height: 60px;
        bottom: -15px;
        right: -10px;
    }
    
    .news-section .section-content .quote-icon i {
        font-size: 24px;
    }
    
    .news-section .section-content .testimonial-image {
        max-width: 100%;
    }
    
    .news-section .section-brands .brands-container {
        justify-content: center;
        gap: 25px;
    }
    
    .news-section .section-brands .brand-item {
        height: 70px;
    }
    
    .news-section .section-brands .brand-item img {
        max-height: 50px;
        max-width: 120px;
    }
}

@media (max-width: 767px) {
    .news-section {
        padding: 50px 0;
    }
    
    .news-section .section-header {
        margin-bottom: 40px;
    }
    
    .news-section .section-header .section-title {
        font-size: 1.8rem;
    }
    
    .news-section .section-content .testimonial-container {
        gap: 30px;
    }
    
    .news-section .section-content .testimonial-text {
        padding-right: 50px;
    }
    
    .news-section .section-content .testimonial-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .news-section .section-content .testimonial-quote {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .news-section .section-content .quote-icon {
        width: 50px;
        height: 50px;
        bottom: -10px;
        right: -5px;
    }
    
    .news-section .section-content .quote-icon i {
        font-size: 20px;
    }
    
    .news-section .section-brands {
        margin-top: 40px;
        padding: 30px 0;
    }
    
    .news-section .section-brands .brands-container {
        gap: 20px;
        justify-content: center;
    }
    
    .news-section .section-brands .brand-item {
        height: 60px;
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .news-section .section-brands .brand-item img {
        max-height: 40px;
        max-width: 100px;
    }
}

/* Business Partners Section */
.business-partners-section {
    padding: 40px 0;
    background: #F6F7F9;
}

.business-partners-section .business-partners-container {
    background: linear-gradient(180deg, #1b81c4 0, #07b7f6 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    padding: 40px 60px;
}

.business-partners-section .business-partners-content {
    flex: 1;
    max-width: 900px;
    z-index: 2;
    position: relative;
}

.business-partners-section .business-partners-text {
    color: var(--white);
}

.business-partners-section .business-partners-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--white);
}

.business-partners-section .business-partners-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.95;
    color: var(--white);
}

.business-partners-section .business-partners-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.business-partners-section .business-partners-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateX(5px);
}

.business-partners-section .business-partners-link i {
    font-size: 12px;
    transition: all 0.3s ease;
}

.business-partners-section .business-partners-link:hover i {
    transform: translateX(3px);
}

.business-partners-section .business-partners-action {
    z-index: 2;
    position: relative;
}

.business-partners-section .business-partners-btn {
    display: inline-block;
    background-color: #0d47a1;
    color: var(--white);
    padding: 15px 35px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
}

.business-partners-section .business-partners-btn:hover {
    background-color: #1565c0;
    transform: translateY(-2px);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(13, 71, 161, 0.4);
}

.business-partners-section .business-partners-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.business-partners-section .business-partners-shapes .shape {
    position: absolute;
    opacity: 0.8;
}

.business-partners-section .business-partners-shapes .shape-yellow-circle {
    background-color: #ffd54f;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: 30px;
    left: 200px;
    animation: float 3s ease-in-out infinite;
}

.business-partners-section .business-partners-shapes .shape-orange-square {
    background-color: #ff7043;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    bottom: 50px;
    left: 100px;
    transform: rotate(15deg);
    animation: float 4s ease-in-out infinite reverse;
}

.business-partners-section .business-partners-shapes .shape-small-orange {
    background-color: #ff7043;
    width: 15px;
    height: 15px;
    border-radius: 3px;
    top: 50%;
    right: 200px;
    transform: rotate(-20deg);
    animation: float 3.5s ease-in-out infinite;
}

.business-partners-section .business-partners-shapes .shape-small-yellow {
    background-color: #ffd54f;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    bottom: 30px;
    right: 300px;
    transform: rotate(10deg);
    animation: float 4.5s ease-in-out infinite reverse;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .business-partners-section {
        padding: 60px 0;
    }
    
    .business-partners-section .business-partners-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        min-height: auto;
        gap: 30px;
    }
    
    .business-partners-section .business-partners-content {
        max-width: 100%;
    }
    
    .business-partners-section .business-partners-title {
        font-size: 2rem;
    }
    
    .business-partners-section .business-partners-shapes .shape-yellow-circle {
        top: 20px;
        left: 80%;
        width: 30px;
        height: 30px;
    }
    
    .business-partners-section .business-partners-shapes .shape-orange-square {
        bottom: 30px;
        left: 10%;
        width: 15px;
        height: 15px;
    }
    
    .business-partners-section .business-partners-shapes .shape-small-orange {
        top: 40%;
        right: 5%;
        width: 12px;
        height: 12px;
    }
    
    .business-partners-section .business-partners-shapes .shape-small-yellow {
        bottom: 60%;
        right: 80%;
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 767px) {
    .business-partners-section {
        padding: 50px 0;
    }
    
    .business-partners-section .business-partners-container {
        padding: 30px 20px;
        border-radius: 16px;
        gap: 25px;
    }
    
    .business-partners-section .business-partners-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .business-partners-section .business-partners-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .business-partners-section .business-partners-link {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .business-partners-section .business-partners-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
    
    .business-partners-section .business-partners-shapes .shape {
        opacity: 0.6;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #F6F7F9;
}

.faq-section .faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-section .faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f2d6a;
    margin-bottom: 0;
    line-height: 1.2;
}

.faq-section .text-primary {
    color: var(--primary-blue) !important;
}

.faq-section .faq-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* FAQ Categories */
.faq-categories {
    background: #fff;
    border-radius: 16px;
    padding: 0;
    overflow: hidden; 
}

.faq-section .faq-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-section .faq-category-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-section .faq-category-item:last-child {
    border-bottom: none;
}

.faq-section .faq-category-link {
    display: block;
    padding: 20px 25px;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-section .faq-category-item.active .faq-category-link {
    background: #e3f2fd;
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    font-weight: 600;
}

.faq-section .faq-category-link:hover {
    background: #f8f9fa;
    color: var(--primary-blue);
}

/* FAQ Questions */
.faq-questions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-section .faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden; 
    transition: all 0.3s ease;
}

.faq-section .faq-item.active {
    background: #fff;
}

.faq-section .faq-question {
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-section .faq-question-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-section .faq-item.active .faq-question-text {
    color: var(--primary-blue);
    font-weight: 600;
}

.faq-section .faq-toggle {
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-section .faq-toggle i {
    font-size: 14px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.faq-section .faq-toggle:hover {
    background: rgba(17, 151, 237, 0.1);
}

.faq-section .faq-answer {
    padding: 0 25px 25px;
    display: none;
    animation: fadeInDown 0.3s ease;
}

.faq-section .faq-item.active .faq-answer {
    display: block;
}

.faq-section .faq-answer p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    margin-top: 30px;
}

.faq-section .faq-item.active .faq-answer p {
    color: #555;
}


.faq-content-item {
    display: none !important;
}
.faq-content-item.active {
    display: block !important;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-section .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-section .faq-title {
        font-size: 2rem;
    }
    
    .faq-section .faq-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .faq-section .faq-categories {
        order: 1;
    }
    
    .faq-section .faq-questions {
        order: 1;
    }
    
    .faq-section .faq-category-list {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .faq-section .faq-category-item {
        border-bottom: none;
        flex: 1;
        min-width: 120px;
    }
    
    .faq-section .faq-category-link {
        padding: 15px 20px;
        text-align: center;
        border-radius: 8px;
        border-left: none;
        border-bottom: 4px solid transparent;
    }
    
    .faq-section .faq-category-item.active .faq-category-link {
        border-left: none;
        border-bottom-color: var(--primary-blue);
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-section .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-section .faq-content {
        gap: 25px;
    }
    
    .faq-section .faq-category-list {
        flex-direction: column;
        gap: 5px;
    }
    
    .faq-section .faq-category-item {
        min-width: auto;
    }
    
    .faq-section .faq-category-link {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .faq-section .faq-question {
        padding: 18px 20px;
    }
    
    .faq-section .faq-question-text {
        font-size: 15px;
        padding-right: 15px;
    }
    
    .faq-section .faq-answer {
        padding: 0 20px 20px;
    }
    
    .faq-section .faq-answer p {
        font-size: 14px;
    }
}

/* Product Page Styles */
.product-section {
    padding: 40px 0 80px;
    background: #e6f8fe;
    min-height: calc(100vh - 115px);
}

/* Product Header */
.product-section .product-header {
    text-align: center;
    margin-bottom: 50px;
}

.product-section .product-title {
    font-size: 2rem;
    font-weight: 500;
    color: #0f2d6a;
    margin-bottom: 15px;
}

.product-section .product-breadcrumb {
    max-width: 450px;
    height: 50px;
    line-height: normal;
    margin: 0 auto;
    background: #f6f7f9;
    padding: 14px 20px;
    border-radius: 16px;
    border: 1px solid #e4e7ec;
}

.product-section .breadcrumb-link {
    color: #666;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-section .breadcrumb-link:hover {
    color: var(--primary-blue);
}

.product-section .product-breadcrumb i {
    color: #1B326E;
    font-size: 0.6rem;
    background: #E4E7EC;
    padding: 3px 6px;
    border-radius: 50%;
}

.product-section .breadcrumb-current {
    color: #0f2d6a;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Main Content Layout */
.product-section .product-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

/* Left Column - Product Info */
.product-section .product-info { 
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.product-section .product-info-content {
    position: relative;
    z-index: 2;
}

.product-section .product-main-title {
    font-size: 3rem;
    font-weight: 500;
    color: #0f2d6a;
    line-height: 1.1;
    margin-bottom: 30px;
}

.product-section .highlight-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.product-section .highlight-text {
    font-weight: 700;
    color: var(--primary-blue);
}

.product-section .brand-text {
    font-weight: 700;
    color: #0f2d6a;
}

.product-section .exclamation {
    color: var(--primary-blue);
    font-weight: 700;
}

.product-section .product-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.product-section .product-description strong {
    color: #0f2d6a;
    font-weight: 600;
}

/* Awards Section */
.product-section .product-awards {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.product-section .award-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-section .award-logo {
    height: 40px;
    width: auto;
}

.product-section .award-text {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.product-section .award-badge-img {
    height: 60px;
    width: auto;
}

/* Product Decorative Shapes */
.product-section .product-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.product-section .product-shapes .shape {
    position: absolute;
    opacity: 0.7;
}

.product-section .shape-blue-square {
    background-color: var(--primary-blue);
    width: 25px;
    height: 25px;
    border-radius: 4px;
    top: 15%;
    right: 10%;
    transform: rotate(15deg);
    animation: float 3s ease-in-out infinite;
}

.product-section .shape-yellow-square {
    background-color: #ffd54f;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    bottom: 20%;
    left: 15%;
    transform: rotate(-10deg);
    animation: float 4s ease-in-out infinite reverse;
}

.product-section .shape-orange-dot {
    background-color: #ff7043;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    top: 40%;
    right: 25%;
    animation: float 3.5s ease-in-out infinite;
}

/* Right Column - Application Form */
.product-section .product-form {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    max-width: 582px;
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 991px) {
    .product-section .product-form {
        position: static;
        order: 0;
    }
}

.product-section .form-container { 
    border-radius: 20px;
    padding: 40px; 
    position: relative;
    overflow: hidden;
}

.product-section .form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f2d6a;
    margin-bottom: 30px;
    text-align: left;
}

.product-section .application-form {
    position: relative;
    z-index: 2;
}

.product-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

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

.product-section .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fff;
}

.product-section .form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(17, 151, 237, 0.1);
}

.product-section .form-control::placeholder {
    color: #999;
}

.product-section select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    appearance: none;
    padding-right: 40px;
}

/* Checkbox */
.product-section .form-checkbox {
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.product-section .form-checkbox input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-blue);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
}

.product-section .form-checkbox label {
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
    color: #666;
    margin: 0;
}

.product-section .kvkk-link {
    color: var(--primary-blue);
    text-decoration: none;
}

.product-section .kvkk-link:hover {
    text-decoration: underline;
}

/* Submit Button */
.product-section .form-submit-btn {
    width: 100%;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.product-section .form-submit-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 151, 237, 0.3);
}

/* Form Decorative Shapes */
.product-section .form-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.product-section .form-shape {
    position: absolute;
    opacity: 0.6;
}

.product-section .form-shape-yellow {
    background-color: #ffd54f;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    top: 10%;
    right: 8%;
    transform: rotate(25deg);
    animation: float 3s ease-in-out infinite;
}

.product-section .form-shape-orange {
    background-color: #ff7043;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    bottom: 15%;
    left: 10%;
    transform: rotate(-15deg);
    animation: float 4s ease-in-out infinite reverse;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .product-section .product-content {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }
    
    .product-section .product-info {
        padding: 40px;
    }
    
    .product-section .product-main-title {
        font-size: 2.5rem;
    }
    
    .product-section .form-container {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .product-section {
        padding: 30px 0 60px;
    }
    
    .product-section .product-header {
        margin-bottom: 40px;
    }
    
    .product-section .product-title {
        font-size: 2rem;
    }
    
    .product-section .product-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-form {
        position: static;
        order: -1;
    }
    
    .product-section .product-info {
        padding: 40px 30px;

    }
    
    .product-section .product-main-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .product-section .product-description {
        text-align: center;
    }
    
    .product-section .product-awards {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .product-section {
        padding: 20px 0 40px;
    }
    
    .product-section .product-header {
        margin-bottom: 30px;
    }
    
    .product-section .product-title {
        font-size: 1.8rem;
    }
    
    .product-section .product-breadcrumb {
        flex-wrap: wrap;
        font-size: 13px;
    }
    
    .product-section .product-info {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .product-section .product-main-title {
        font-size: 1.8rem;
    }
    
    .product-section .highlight-number {
        font-size: 3rem;
    }
    
    .product-section .product-description {
        font-size: 1rem;
    }
    
    .product-section .form-container {
        padding: 25px;
        border-radius: 16px;
    }
    
    .product-section .form-title {
        font-size: 1.3rem;
        margin-bottom: 25px;
    }
    
    .product-section .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .product-section .form-control {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .product-section .product-awards {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .product-section .award-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Title Section */
.title-section {
    margin-top: 100px;
    padding: 80px 0;
    background: #F6F7F9;
}

.title-section .title-banner {
    background: linear-gradient(180deg, #1b81c4 0%, #07b7f6 100%);
    border-radius: 24px;
    padding: 50px 70px;
    position: relative;
    overflow: hidden;
    text-align: center;
    max-width: 1200px;
}

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

.title-section .title-text {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* Title Decorative Shapes */
.title-section .title-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.title-section .title-shape {
    position: absolute;
    opacity: 0.8;
}

.title-section .title-shape-yellow-top {
    background-color: #ffd54f;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    top: 15%;
    left: 50%;
    transform: translateX(-50%) rotate(15deg);
    animation: float 3s ease-in-out infinite;
}

.title-section .title-shape-orange-left {
    background-color: #ff7043;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    bottom: 20%;
    left: 8%;
    transform: rotate(-10deg);
    animation: float 4s ease-in-out infinite reverse;
}

.title-section .title-shape-orange-right {
    background-color: #ff7043;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    top: 25%;
    right: 15%;
    transform: rotate(20deg);
    animation: float 3.5s ease-in-out infinite;
}

.title-section .title-shape-yellow-middle {
    background-color: #ffd54f;
    width: 35px;
    height: 35px;
    border-radius: 7px;
    bottom: 30%;
    right: 45%;
    transform: rotate(-15deg);
    animation: float 4.5s ease-in-out infinite reverse;
}

.title-section .title-shape-blue-right {
    background-color: #42a5f5;
    width: 18px;
    height: 18px;
    border-radius: 4px;
    bottom: 15%;
    right: 8%;
    transform: rotate(25deg);
    animation: float 3.2s ease-in-out infinite;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .title-section .title-banner {
        padding: 50px 60px;
        max-width: 100%;
    }
    
    .title-section .title-text {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .title-section {
        padding: 60px 0;
    }
    
    .title-section .title-banner {
        padding: 40px 40px;
        border-radius: 20px;
    }
    
    .title-section .title-text {
        font-size: 2rem;
        line-height: 1.4;
    }
}

@media (max-width: 767px) {
    .title-section {
        padding: 50px 0;
    }
    
    .title-section .title-banner {
        padding: 30px 25px;
        border-radius: 16px;
    }
    
    .title-section .title-text {
        font-size: 1.6rem;
        line-height: 1.4;
    }
    
    .title-section .title-shape-yellow-top {
        width: 25px;
        height: 25px;
        top: 10%;
    }
    
    .title-section .title-shape-orange-left {
        width: 20px;
        height: 20px;
        bottom: 15%;
        left: 5%;
    }
    
    .title-section .title-shape-orange-right {
        width: 18px;
        height: 18px;
        top: 20%;
        right: 10%;
    }
    
    .title-section .title-shape-yellow-middle {
        width: 28px;
        height: 28px;
        bottom: 25%;
        right: 40%;
    }
    
    .title-section .title-shape-blue-right {
        width: 15px;
        height: 15px;
        bottom: 12%;
        right: 5%;
    }
}

/* Why Section */
.why-mesajgonder-section {
    padding: 30px 0;
    background: #F6F7F9;
}

.why-mesajgonder-section .why-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-mesajgonder-section .why-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0f2d6a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.why-mesajgonder-section .text-primary {
    color: var(--primary-blue) !important;
}

.why-mesajgonder-section .why-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

.why-mesajgonder-section .why-description strong {
    color: #0f2d6a;
    font-weight: 600;
}

/* Feature Cards */
.why-mesajgonder-section .why-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 30px;
}

.why-mesajgonder-section .feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center; 
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-mesajgonder-section .feature-card#as_packets {
    padding: 30px 18px;    
}

.why-mesajgonder-section .feature-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8faff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.why-mesajgonder-section .feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.why-mesajgonder-section .feature-card:hover .feature-icon {
    background: rgba(17, 151, 237, 0.1); 
}

.why-mesajgonder-section .feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f2d6a;
    margin-bottom: 5px;
    line-height: 1.3;
    text-align: left;
}

.why-mesajgonder-section .feature-rows {
    margin: 0; 
    padding: 0;
}

.why-mesajgonder-section .feature-rows li {
    border-bottom: 1px solid #dddcdc;
    margin-bottom: 4px;
    
    padding: 1px 0 6px 0;
    font-size: 13px;
    list-style: none;
}

.why-mesajgonder-section .feature-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .why-mesajgonder-section .why-features {
        gap: 25px;
    }
    
    .why-mesajgonder-section .feature-card {
        padding: 35px 25px;
    }
    
    .why-mesajgonder-section .why-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 991px) {
    .why-mesajgonder-section {
        padding: 60px 0;
    }
    
    .why-mesajgonder-section .why-header {
        margin-bottom: 50px;
    }
    
    .why-mesajgonder-section .why-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .why-mesajgonder-section .why-description {
        font-size: 1rem;
    }
    
    .why-mesajgonder-section .why-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 40px;
    }
    
    .why-mesajgonder-section .feature-card {
        padding: 30px 25px; 
    }
    
    .why-mesajgonder-section .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .why-mesajgonder-section .feature-icon img {
        width: 35px;
        height: 35px;
    }
    
    .why-mesajgonder-section .feature-title {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .why-mesajgonder-section .feature-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .why-mesajgonder-section {
        padding: 50px 0;
    }
    
    .why-header {
        margin-bottom: 40px;
    }
    
    .why-title {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }
    
    .why-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .why-features {
        margin-top: 35px;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }
    
    .feature-icon img {
        width: 30px;
        height: 30px;
    }
    
    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .feature-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

@media (max-width: 450px) {
    .why-mesajgonder-section .why-features {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* For Whom Section */
.for-whom-section {
    padding: 80px 0;
    background: #F6F7F9;
}

.for-whom-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.for-whom-section .section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.for-whom-section .section-header .sub-title {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

.for-whom-section .text-primary {
    color: var(--primary-blue) !important;
}

.for-whom-section .for-whom-card {
    background: var(--white);
    border-radius: 20px;
    margin: 0 15px; 
    transition: all 0.3s ease;
    height: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.for-whom-section .for-whom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.for-whom-section .for-whom-card:hover {
    cursor: pointer;
}

.for-whom-section .for-whom-card-image {
    position: relative;
    z-index: 2;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 0;
    overflow: hidden;
}

.for-whom-section .for-whom-card-device-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.15));
}

.for-whom-section .for-whom-card-content {
    position: relative;
    padding: 0 25px 25px;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.for-whom-section .for-whom-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.2;
}

.for-whom-section .for-whom-card-title span {
    font-weight: 400;
}

.for-whom-section .for-whom-card-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
    flex: 1;
}

.for-whom-section .for-whom-card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .for-whom-section {
        padding: 60px 0;
    }
    
    .for-whom-section .section-header .section-title {
        font-size: 2rem;
    }
    
    .for-whom-section .for-whom-card {
        height: 320px;
        margin: 0 10px;
    } 
}

@media (max-width: 767px) {
    .for-whom-section {
        padding: 40px 0;
    }
    
    .for-whom-section .section-header {
        margin-bottom: 40px;
    }
    
    .for-whom-section .section-header .section-title {
        font-size: 1.8rem;
    }
    
    .for-whom-section .for-whom-card {
        height: 300px;
        margin: 0 5px;
        padding: 0;
    }
    
    .for-whom-section .for-whom-card-image {
        height: 120px;
    }
    
    .for-whom-section .for-whom-card-content {
        padding: 0 20px 20px;
    }
    
    .for-whom-section .for-whom-card-title {
        font-size: 1.1rem;
    }
    
    .for-whom-section .for-whom-card-description {
        font-size: 0.85rem;
    } 
}



 

/* Entegration Section */
.entegration-section {
    padding: 80px 0;
    background: #F6F7F9;
}

.entegration-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.entegration-section .section-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.entegration-section .section-header .sub-title {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

.entegration-section .text-primary {
    color: var(--primary-blue) !important;
}

.entegration-section .entegration-card {
    background: var(--white);
    border-radius: 20px;
    margin: 0 15px; 
    transition: all 0.3s ease;
    height: 350px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.entegration-section .entegration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.entegration-section .entegration-card:hover {
    cursor: pointer;
}

.entegration-section .entegration-card-image {
    position: relative;
    z-index: 2;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 0;
    overflow: hidden;
}

.entegration-section .entegration-card-device-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.15));
}

.entegration-section .entegration-card-content {
    position: relative;
    padding: 0 25px 25px;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.entegration-section .entegration-card-content a.btn {
    font-size: 13px;
    padding: 8px 16px;
    background: #3d61ff;
    border: none;
}

.entegration-section .entegration-card-content a.btn:hover {
    background: #4b4b4b;
}

.entegration-section .entegration-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.2;
}

.entegration-section .entegration-card-title span {
    font-weight: 400;
}

.entegration-section .entegration-card-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
    flex: 1;
}

.entegration-section .entegration-card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .entegration-section {
        padding: 60px 0;
    }
    
    .entegration-section .section-header .section-title {
        font-size: 2rem;
    }
    
    .entegration-section .entegration-card {
        height: 320px;
        margin: 0 10px;
    } 
}

@media (max-width: 767px) {
    .entegration-section {
        padding: 40px 0;
    }
    
    .entegration-section .section-header {
        margin-bottom: 40px;
    }
    
    .entegration-section .section-header .section-title {
        font-size: 1.8rem;
    }
    
    .entegration-section .entegration-card {
        height: 300px;
        margin: 0 5px;
        padding: 0;
    }
    
    .entegration-section .entegration-card-image {
        height: 120px;
    }
    
    .entegration-section .entegration-card-content {
        padding: 0 20px 20px;
    }
    
    .entegration-section .entegration-card-title {
        font-size: 1.1rem;
    }
    
    .entegration-section .entegration-card-description {
        font-size: 0.85rem;
    } 
}


/* Basket Section Styles */
.basket-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.basket-section .basket-header {
    margin-bottom: 30px;
}

.basket-section .basket-title {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
}

.basket-section .basket-count {
    font-size: 18px;
    color: #6c757d;
    font-weight: 400;
}

/* Basket Item Styles */
.basket-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.basket-section .basket-item:hover {
    transform: translateY(-2px);
}

.basket-section .item-image {
    width: 70px;
    height: 70px;
    margin-right: 20px;
}

.basket-section .item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.basket-section .item-details {
    flex: 1;
    margin-right: 20px;
}

.basket-section .item-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.basket-section .item-description {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 12px;
}

.basket-section .item-features {
    display: flex;
    gap: 15px;
}

.basket-section .feature {
    font-size: 13px;
    color: #2c3e50;
}

.basket-section .feature i {
    color: #28a745;
    margin-right: 4px;
}

/* Quantity Controls */
.basket-section .item-quantity {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.basket-section .qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #dee2e6;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.basket-section .qty-btn:hover {
    background: #f8f9fa;
}

.basket-section .qty-input {
    width: 50px;
    height: 32px;
    text-align: center;
    border: 1px solid #dee2e6;
    margin: 0 8px;
    border-radius: 6px;
}

/* Price Styles */
.basket-section .item-price {
    margin-right: 20px;
    text-align: right;
}

.basket-section .current-price {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.basket-section .original-price {
    display: block;
    font-size: 14px;
    color: #6c757d;
    text-decoration: line-through;
}

.basket-section .remove-item {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    color: #dc3545;
    cursor: pointer;
    transition: color 0.2s ease;
}

.basket-section .remove-item:hover {
    color: #c82333;
}

/* Order Summary Styles */
.basket-section .basket-sticky {
    position: sticky;
    top: 100px;
    height: 100%;
}


.basket-section .order-summary {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.basket-section .summary-title {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.basket-section .summary-items {
    margin-bottom: 0px;
}

.basket-section .summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
    color: #6c757d;
}

.basket-section .summary-item.discount {
    color: #28a745;
}

.basket-section .summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

/* Promo Code Styles */
.basket-section .promo-code {
    margin: 20px 0;
}

.basket-section .promo-code .input-group {
    gap: 10px;
}

.basket-section .checkout-btn {
    margin: 20px 0;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
}

.basket-section .secure-checkout {
    text-align: center;
    font-size: 13px;
    color: #6c757d;
}

/* Payment Options Styles */
.basket-section .payment-options {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.basket-section .options-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.basket-section .options-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    align-items: center;
}

.basket-section .options-grid img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Recommended Products Styles */
.recommended-products {
    padding: 60px 0;
    background: #fff;
}

.recommended-products .section-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
}

.recommended-products .product-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    margin: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.recommended-products .product-card:hover {
    transform: translateY(-5px);
}

.recommended-products .product-image {
    position: relative;
    margin-bottom: 15px;
}

.recommended-products .product-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
}

.recommended-products .product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #007bff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.recommended-products .product-badge.sale {
    background: #dc3545;
}

.recommended-products .product-info {
    text-align: center;
}
.recommended-products .product-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.recommended-products .product-price {
    margin-bottom: 15px;
}

.recommended-products .product-price .discounted {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-right: 8px;
}

.recommended-products .product-price .original {
    font-size: 14px;
    color: #6c757d;
    text-decoration: line-through;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .basket-section .basket-item {
        flex-wrap: wrap;
    }
    
    .basket-section .item-details {
        width: calc(100% - 140px);
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .basket-section .item-quantity,
    .basket-section .item-price {
        margin-right: 20px;
        margin-bottom: 10px;
    }
    
    .basket-section .remove-item {
        margin-left: auto;
    }
}

@media (max-width: 767.98px) {
    .basket-section {
        padding: 30px 0;
    }
    
    .basket-section .item-image {
        width: 80px;
        height: 80px;
    }
    
    .basket-section .item-details {
        width: calc(100% - 100px);
    }
    
    .basket-section .item-title {
        font-size: 16px;
    }
    
    .basket-section .item-features {
        flex-direction: column;
        gap: 5px;
    }
    
    .basket-section .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .basket-section .basket-title {
        font-size: 24px;
    }
    
    .basket-section .basket-count {
        font-size: 16px;
    }
    
    .basket-section .item-quantity {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 15px;
    }
    
    .basket-section .item-price {
        width: 100%;
        text-align: left;
    }
}


/* Ödeme Sayfası Stilleri */
.payment-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
    padding: 20px 0;
}
.payment-container .payment-membership-wrapper {
    background: #fff;
    border-radius: 20px; 
    padding: 40px;
    position: relative;
}

.payment-container .payment-membership-wrapper .form-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.payment-container .payment-membership-wrapper .form-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.payment-container .payment-card-wrapper {
    background: #fff;
    border-radius: 20px; 
    padding: 40px;
    position: relative;
}

/* Kredi Kartı Tasarımı */
.payment-container .credit-card {
    width: 100%;
    max-width: 400px;
    height: 250px;
    margin: 0 auto 40px;
    perspective: 1000px;
    position: relative;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.payment-container .credit-card.flipped {
    transform: rotateY(180deg);
}

.payment-container .card-front,
.payment-container .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    padding: 25px;
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.payment-container .card-back {
    transform: rotateY(180deg);
}

.payment-container .chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #b8860b 100%);
    border-radius: 8px;
    margin-bottom: 30px;
}

.payment-container .card-number-display {
    font-size: 24px;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    font-family: 'Courier New', monospace;
    margin-bottom: 30px;
}

.payment-container .card-info {
    display: flex;
    justify-content: space-between;
    color: #fff;
}

.payment-container .card-holder,
.payment-container .card-expiry {
    display: flex;
    flex-direction: column;
}

.payment-container .label {
    font-size: 12px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 5px;
}

.payment-container .value {
    font-size: 16px;
    letter-spacing: 1px;
}

.payment-container .magnetic-strip {
    width: 100%;
    height: 50px;
    background: #333;
    margin: 20px 0;
}

.payment-container .signature-panel {
    background: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.payment-container .cvc {
    margin-left: auto;
    font-family: 'Courier New', monospace;
    font-size: 18px;
}

/* Form Stilleri */
.payment-container .payment-form {
    margin-top: 30px;
}

.payment-container .form-title {
    text-align: start;
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.payment-container .form-subtitle {
    color: #666;
    font-size: 14px;
    text-align: start;
    margin-bottom: 30px;
}

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

.payment-container .form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.payment-container .form-control {
    height: 40px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    padding: 0 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

/* Kart Numarası Input Stilleri */
.payment-container .card-number-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-container .card-number-input {
    width: 150px;
    text-align: center; 
    letter-spacing: 1px;
}

.payment-container .card-icon {
    background: #f8f9fa;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    padding: 0 15px;
    height: 40px;
    display: flex;
    align-items: center;
}

/* Mobil için kart numarası input stilleri */
@media (max-width: 480px) {
    .payment-container .card-number-inputs {
        gap: 5px;
    }
    
    .payment-container .card-number-input {
        width: 65px;
        font-size: 11px;
    }
}

.payment-container .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.payment-container .input-group-text {
    background: #f8f9fa;
    border: 2px solid #e1e1e1; 
    color: #666;
}

.payment-container .form-select {
    height: 40px;
    border: 2px solid #e1e1e1;
    border-radius: 2px;
    padding: 0 15px;
    font-size: 16px;
    background-position: right 15px center;
}

.payment-container .btn-primary {
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    background: #007bff;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.payment-container .btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.payment-container .security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.payment-container .security-badges img {
    height: 30px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-container .security-badges img:hover {
    opacity: 1;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .payment-container .payment-card-wrapper {
        padding: 20px;
    }

    .payment-container .credit-card {
        max-width: 320px;
        height: 200px;
    }

    .payment-container .card-number-display {
        font-size: 20px;
    }

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

    .payment-container .security-badges {
        flex-wrap: wrap;
    }
}

/* Animasyonlar */
@keyframes cardFlip {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(180deg);
    }
}



/* security Page Styles */
.security-section {
    padding: 40px 0 80px;
    background: #e6f8fe; 
}

/* security Header */
.security-section .security-header {
    text-align: center;
    margin-bottom: 50px;
}

.security-section .security-title {
    font-size: 2rem;
    font-weight: 500;
    color: #0f2d6a;
    margin-bottom: 15px;
}

.security-section .security-breadcrumb {
    max-width: 450px;
    height: 50px;
    line-height: normal;
    margin: 0 auto;
    background: #f6f7f9;
    padding: 14px 20px;
    border-radius: 16px;
    border: 1px solid #e4e7ec;
}

.security-section .breadcrumb-link {
    color: #666;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.security-section .breadcrumb-link:hover {
    color: var(--primary-blue);
}

.security-section .security-breadcrumb i {
    color: #1B326E;
    font-size: 0.6rem;
    background: #E4E7EC;
    padding: 3px 6px;
    border-radius: 50%;
}

.security-section .breadcrumb-current {
    color: #0f2d6a;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Main Content Layout */
.security-section .security-content {
    position: relative; 
    gap: 60px;
    align-items: start;
}


/* Left Column - security Info */
.security-section .security-info { 
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.security-section .security-info-content {
    position: relative;
    z-index: 2;
}

.security-section .security-main-title {
    font-size: 3rem;
    font-weight: 500;
    color: #0f2d6a;
    line-height: 1.1;
    margin-bottom: 30px;
}

.security-section .highlight-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.security-section .highlight-text {
    font-weight: 700;
    color: var(--primary-blue);
}

.security-section .brand-text {
    font-weight: 700;
    color: #0f2d6a;
}

.security-section .exclamation {
    color: var(--primary-blue);
    font-weight: 700;
}

.security-section .security-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.security-section .security-description strong {
    color: #0f2d6a;
    font-weight: 600;
}


/* security Decorative Shapes */
.security-section .security-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.security-section .security-shapes .shape {
    position: absolute;
    opacity: 0.7;
}

.security-section .shape-blue-square {
    background-color: var(--primary-blue);
    width: 25px;
    height: 25px;
    border-radius: 4px;
    top: 15%;
    right: 10%;
    transform: rotate(15deg);
    animation: float 3s ease-in-out infinite;
}

.security-section .shape-yellow-square {
    background-color: #ffd54f;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    bottom: 20%;
    left: 15%;
    transform: rotate(-10deg);
    animation: float 4s ease-in-out infinite reverse;
}

.security-section .shape-orange-dot {
    background-color: #ff7043;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    top: 40%;
    right: 25%;
    animation: float 3.5s ease-in-out infinite;
}

.payment-card-img-section {
    padding: 40px 0;
    background: #f8f9fa;
    border-radius: 16px;
    margin: 40px 0;
}

.payment-cards-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
}

.main-card-logos {
    text-align: center;
}

.main-card-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.additional-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

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

.additional-card-image {
    max-width: 100%;
    width: 230px;
    height: auto;
    border-radius: 8px; 
}
 

/* Tablet için responsive tasarım */
@media (max-width: 768px) {
    .payment-card-img-section {
        padding: 30px 0;
        margin: 30px 0;
    }
    
    .payment-cards-container {
        gap: 25px;
        padding: 0 15px;
    }
    
    .main-card-image {
        width: 450px;
    }
    
    .additional-cards {
        gap: 20px;
    }
    
    .additional-card-image {
        width: 140px;
    }
}

/* Mobil için responsive tasarım */
@media (max-width: 480px) {
    .payment-card-img-section {
        padding: 25px 0;
        margin: 25px 0;
        border-radius: 12px;
    }
    
    .payment-cards-container {
        gap: 20px;
        padding: 0 10px;
    }
    
    .main-card-image {
        width: 100%;
    }
    
    .additional-cards {
        gap: 15px;
        flex-direction: column;
    }
    
    .additional-card-image {
        width: 30%;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 320px) {
    .payment-card-img-section {
        padding: 20px 0;
        margin: 20px 0;
    }
    
    .main-card-image {
        width: 240px;
    }
    
    .additional-card-image {
        width: 70px;
    }
}

/* ========================= */
/* MOBİL MENU SİSTEMİ */
/* ========================= */

/* Mobil Menu Trigger Button */
.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1002; 
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;  
}
 

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

/* Hamburger İkonu */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 2px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animasyonu */
.menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobil Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

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

/* Mobil Menu Container */
.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    display: none;
    background: #fff;
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu-container.active {
    right: 0;
}

/* Mobil Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: linear-gradient(135deg, #1b81c4 0%, #07b7f6 100%);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

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

.mobile-menu-logo img {
    height: 15px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Mobil Menu Content */
.mobile-menu-content {
    padding: 20px 0;
}

/* Mobil Menu Items */
.mobile-menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-link:hover {
    background: #f8f9fa;
    color: #1b81c4;
    padding-left: 35px;
}

.mobile-menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #1b81c4;
    transition: width 0.3s ease;
}

.mobile-menu-link:hover::before {
    width: 4px;
}

/* Dropdown İkonu */
.mobile-menu-arrow {
    font-size: 14px;
    color: #666;
    transition: transform 0.3s ease;
}

.mobile-menu-item.has-dropdown.active .mobile-menu-arrow {
    transform: rotate(180deg);
}

/* Mobil Submenu */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    transition: max-height 0.3s ease;
}

.mobile-menu-item.has-dropdown.active .mobile-submenu {
    max-height: 500px;
}

.mobile-submenu-item {
    border-bottom: 1px solid #e9ecef;
}

.mobile-submenu-item:last-child {
    border-bottom: none;
}

.mobile-submenu-link {
    display: block;
    padding: 12px 25px 12px 50px;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-submenu-link:hover {
    background: #e9ecef;
    color: #1b81c4;
    padding-left: 60px;
}

.mobile-submenu-link::before {
    content: '→';
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: #1b81c4;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-submenu-link:hover::before {
    opacity: 1;
    left: 35px;
}

/* Mobil Menu Footer */
.mobile-menu-footer {
    padding: 20px 25px;
    border-top: 1px solid #f0f0f0;
    background: #f8f9fa;
    margin-top: auto;
}

.mobile-menu-btn {
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mobile-menu-btn.primary {
    background: #1b81c4;
    color: #fff;
}

.mobile-menu-btn.primary:hover {
    background: #0f5a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 129, 196, 0.3);
}

.mobile-menu-btn.outline {
    background: transparent;
    color: #1b81c4;
    border-color: #1b81c4;
}

.mobile-menu-btn.outline:hover {
    background: #1b81c4;
    color: #fff;
}

/* Mobil Menu Responsive */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .mobile-menu-container {
        display: block;
    }

    
    /* Ana navbar'ı gizle */
    .main-navbar .navbar-menu,
    .main-navbar .navbar-buttons {
        display: none;
    }
}

/* Tablet ve küçük ekranlar için */
@media (max-width: 768px) {
    .mobile-menu-container {
        width: 280px;
    }
    
    .menu-toggle {
        width: 45px;
        height: 45px;
        top: 15px;
        right: 15px;
    }
    
    .hamburger span {
        width: 18px;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 480px) {
    .mobile-menu-container {
        width: 100%;
        max-width: 100%;
    }
    
    .menu-toggle {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }
    
    .hamburger span {
        width: 16px;
    }
}

/* Mobil Menu Scroll */
.mobile-menu-container::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.mobile-menu-container::-webkit-scrollbar-thumb {
    background: #1b81c4;
    border-radius: 3px;
}

.mobile-menu-container::-webkit-scrollbar-thumb:hover {
    background: #0f5a8a;
}

/* Body scroll control */
body.mobile-menu-open {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Mobil Menu Animasyonları */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}