/* ========================================
   HEADER - MODERN LAYOUT
======================================== */

/* Navbar Ana Yapı */
.header-section .navbar {
    background: #fff;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 0;
    margin-bottom: 0;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo - Sol (Boşluklu) */
.navbar-header {
    flex: 0 0 auto;
    margin-right: 100px; /* Logo'dan sonra boşluk */
}

.navbar-brand {
    padding: 0;
    height: auto;
}

.navbar-brand img {
    height: 45px;
    width: auto;
}

/* Menü Wrapper - Orta/Sağ */
.navbar-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
    gap: 30px;
}

/* Menü Liste */
.navbar-menu .nav.navbar-nav {
    display: flex;
    align-items: center;
    margin: 0;
    gap: 5px;
}

.navbar-menu .nav.navbar-nav > li {
    float: none;
    display: inline-block;
}

.navbar-menu .nav.navbar-nav > li > a {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 18px;
    transition: all 0.3s;
    border-radius: 5px;
}

.navbar-menu .nav.navbar-nav > li > a:hover,
.navbar-menu .nav.navbar-nav > li.active > a {
    color: #4F46E5;
    background: rgba(79, 70, 229, 0.05);
}

/* Dropdown Menu */
.navbar-menu .dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 10px;
    min-width: 220px;
}

.navbar-menu .dropdown-menu li a {
    padding: 12px 25px;
    color: #555;
    font-size: 14px;
    transition: all 0.3s;
}

.navbar-menu .dropdown-menu li a:hover {
    background: #f8f9fa;
    color: #4F46E5;
    padding-left: 30px;
}

/* Giriş Yap Butonu */
.navbar-auth {
    flex: 0 0 auto;
}

.btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    text-decoration: none;
}

.btn-login i {
    margin-right: 6px;
}

/* Dil Seçimi - Sağ Üst */
.navbar-language {
    flex: 0 0 auto;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 15px;
    border-radius: 20px;
}

.lang-btn {
    background: transparent;
    border: none;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 3px 8px;
    transition: all 0.3s;
    border-radius: 5px;
}

.lang-btn:hover {
    color: #4F46E5;
}

.lang-btn.active {
    color: #4F46E5;
    background: #fff;
}

.language-selector .separator {
    color: #ddd;
    font-size: 12px;
}

/* ========================================
   MOBİL MENÜ
======================================== */

.mobile-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 15px 0;
    display: none;
}

.mobile-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-language .lang-btn {
    font-size: 12px;
    padding: 2px 5px;
}

.menu-toggle {
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-wrapper {
        padding: 15px 20px;
    }
    
    .navbar-header {
        margin-right: 50px;
    }
    
    .navbar-menu .nav.navbar-nav > li > a {
        padding: 10px 12px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .header-section .navbar {
        display: none;
    }
    
    .mobile-header {
        display: block;
    }
}

/* Desktop'ta mobil header'ı gizle */
@media (min-width: 768px) {
    .mobile-header {
        display: none !important;
    }
}





















/* ========================================
   HERO SECTION - Basitleştirilmiş
======================================== */

/* Hero Icon (Resim yerine Font Awesome) */
.hero-icon {
    font-size: 80px;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Alt Metin */
.hero-section .sub-text {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
}

/* Butonlar */
.hero-section .link-button {
    display: inline-block;
    margin-bottom: 60px;
}

.hero-section .link-button a {
    display: inline-block;
    margin: 0 10px;
}

.hero-section .btn-primary {
    background: #4F46E5;
    color: #333 !important;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
}

.hero-section .btn-primary:hover {
    background: #4F46E5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(86, 72, 207, 0.4);
}

.hero-section .btn-outline {
    background: transparent;
    color: #fff !important;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    border: 2px solid #fff;
    transition: all 0.3s;
}

.hero-section .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

/* Highlight Text */
.hero-section .large-text .highlight {
    color: #4F46E5;
    font-weight: 900;
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
    .hero-section .large-text {
        font-size: 42px;
    }
    
    .hero-section .sub-text {
        font-size: 16px;
    }
    
    .hero-icon {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .hero-section .large-text {
        font-size: 32px;
    }
    
    .hero-section .sub-text {
        font-size: 15px;
        padding: 0 15px;
    }
    
    .hero-section .link-button a {
        display: block;
        margin: 10px 0;
    }
    
    .hero-icon {
        font-size: 50px;
    }
}












/* ========================================
   FEATURES SECTION
======================================== */


/* Hover Content Icon */
.feature-icon-white {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-white i {
    font-size: 32px;
    color: #fff;
}

.hover-content h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 25px;
}

/* Hover Content List */
.hover-content .option {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.hover-content .option li {
    padding: 10px 0;
    color: #fff;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.hover-content .option li:last-child {
    border-bottom: none;
}

.hover-content .option li i {
    margin-right: 10px;
    color: #4F46E5;
}

.hover-content .option li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.hover-content .option li a:hover {
    padding-left: 10px;
    color: #4F46E5;
}


/* Responsive */
@media (max-width: 991px) {
    .section-title h2 {
        font-size: 32px;
    }
    
    .cta-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 15px;
    }
    
    .cta-wrapper {
        min-height: auto;
        padding: 30px 20px;
    }
}


/* Feature Icon */
.feature-icon {
    width: 90px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s;
    margin-top: 10px;
}

.feature-icon i {
    font-size: 25px;
    color: #fff;
}

.cta-wrapper:hover .feature-icon {
    transform: rotateY(360deg);
}


/* Icon + Text Yan Yana */
.feature-row {
    display: flex;
    align-items: flex-start;
}

.feature-text {
    margin-left: 15px;
}

.feature-text h3 {
    margin-top: 0;
    margin-bottom: 6px;
}















/* ========================================
   WORK TYPES SLIDER
======================================== */

.work-types-slider {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.work-types-slider .section-title {
    margin-bottom: 60px;
}

/* Swiper Slide */
.work-types-slider .swiper-slide {
    height: auto;
}

.work-types-slider .caption {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s;
}

.work-types-slider .caption:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Image */
.work-types-slider .caption img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

/* Overlay */
.work-types-slider .caption::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

/* Content */
.work-types-slider .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
    color: #fff;
}

/* Icon */
.icon-large {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s;
}

.icon-large i {
    font-size: 30px;
    color: #fff;
}

.work-types-slider .caption:hover .icon-large {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}

/* Title */
.work-types-slider .content h4 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.work-types-slider .content .small {
    display: block;
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    font-weight: 300;
}

/* Button */
.work-types-slider .btn-primary {
    background: #4F46E5;
    border: none;
    padding: 0;
    border-radius: 30px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.work-types-slider .btn-primary a {
    color: #333 !important;
    padding: 12px 28px;
    display: block;
    font-weight: 700;
    font-size: 15px;
}

.work-types-slider .btn-primary:hover {
    background: #4F46E5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Swiper Navigation */
.work-types-slider .swiper-button-prev,
.work-types-slider .swiper-button-next {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    color: #333;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.work-types-slider .swiper-button-prev:hover,
.work-types-slider .swiper-button-next:hover {
    background: #fff;
    transform: scale(1.1);
}

.work-types-slider .swiper-button-prev::after,
.work-types-slider .swiper-button-next::after {
    content: none;
}

.work-types-slider .swiper-button-prev i,
.work-types-slider .swiper-button-next i {
    font-size: 28px;
}

/* Swiper Pagination */
.work-types-slider .swiper-pagination {
    bottom: 20px;
}

.work-types-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: all 0.3s;
}

.work-types-slider .swiper-pagination-bullet-active {
    background: #fff;
    width: 40px;
    border-radius: 10px;
}


/* Center arrow icon inside circular swiper buttons */
.work-types-slider .swiper-button-prev,
.work-types-slider .swiper-button-next {
    display: flex;
    align-items: center;
    justify-content: center;
}
.work-types-slider {
    padding-bottom: 200px;
}





/* Responsive */
@media (max-width: 991px) {
    .work-types-slider .caption img {
        height: 300px;
    }
    
    .work-types-slider .content h4 {
        font-size: 26px;
    }
    
    .work-types-slider .content {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .work-types-slider .caption img {
        height: 250px;
    }
    
    .work-types-slider .content h4 {
        font-size: 22px;
    }
    
    .work-types-slider .content .small {
        font-size: 14px;
    }
    
    .icon-large {
        width: 60px;
        height: 60px;
    }
    
    .icon-large i {
        font-size: 28px;
    }
    
    .work-types-slider .swiper-button-prev,
    .work-types-slider .swiper-button-next {
        width: 45px;
        height: 45px;
    }
    
    .work-types-slider .swiper-button-prev i,
    .work-types-slider .swiper-button-next i {
        font-size: 20px;
    }
}


















/* ========================================
   HOW IT WORKS SECTION
======================================== */

.how-it-works-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Elements */
.how-it-works-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.how-it-works-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(118, 75, 162, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.how-it-works-section .container {
    position: relative;
    z-index: 1;
}

/* Steps Tabs - Sol Taraf */
.steps-tabs {
    border: none;
    background: transparent;
}

.steps-tabs li {
    display: block;
    margin-bottom: 20px;
}

.steps-tabs li a {
    background: #fff;
    border: none;
    border-radius: 15px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.steps-tabs li a:hover,
.steps-tabs li.active a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

/* Step Number */
.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    transition: all 0.4s;
}

.steps-tabs li.active a .step-number,
.steps-tabs li a:hover .step-number {
    background: #fff;
    color: #667eea;
}

/* Step Title */
.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    transition: all 0.4s;
}

.steps-tabs li.active a .step-title,
.steps-tabs li a:hover .step-title {
    color: #fff;
}

/* Start Now Button */
.start-now-btn {
    margin-top: 40px;
}

.start-now-btn .btn-large {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #333 !important;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    box-shadow: 0 8px 25px rgba(36, 36, 36, 0.4);
    transition: all 0.3s;
}

.start-now-btn .btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(79, 81, 245, 0.5);
}

.start-now-btn .btn-large i {
    margin-right: 10px;
}

/* Tab Content - Sağ Taraf */
.how-it-works-section .tab-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    min-height: 500px;
}

/* Step Icon */
.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px 0;
}

.step-icon i {
    font-size: 30px;
    color: #fff;
}

/* Content */
.wrapper-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.wrapper-content > p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* List Detail */
.list-detail {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.list-detail li {
    padding: 12px 0;
    color: #555;
    font-size: 15px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.list-detail li:last-child {
    border-bottom: none;
}

.list-detail li i {
    color: #667eea;
    font-size: 18px;
    flex-shrink: 0;
}

/* Step Visual */
.step-visual {
    margin-top: 30px;
    text-align: center;
}

.step-visual img {
    width: 40px;          
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


/* Demo Video Section */
.demo-video-section {
    margin-top: 60px;
    padding: 40px;
    background: rgba(255,255,255,0.5);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.demo-video-section h4 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.btn-video {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    border: none;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s;
}

.btn-video:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.btn-video i {
    margin-right: 10px;
}

/* Video Modal */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 991px) {
    .steps-tabs {
        margin-bottom: 40px;
    }
    
    .steps-tabs li a {
        padding: 15px 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .step-title {
        font-size: 16px;
    }
    
    .how-it-works-section .tab-content {
        padding: 30px;
        min-height: auto;
    }
    
    .wrapper-content h3 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .how-it-works-section::before,
    .how-it-works-section::after {
        display: none;
    }
    
    .steps-tabs li {
        margin-bottom: 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 26px;
    }
    
    .wrapper-content h3 {
        font-size: 22px;
    }
    
    .demo-video-section {
        padding: 30px 20px;
    }
}







/* ========================================
   HOW IT WORKS – SOFT COLOR OVERRIDES
   (Structure untouched)
======================================== */

/* Section background */
.how-it-works-section {
    background: linear-gradient(135deg, #f6f8fc 0%, #eef2f7 100%);
}

/* Decorative circles */
.how-it-works-section::before {
    background: rgba(91, 124, 250, 0.08);
}

.how-it-works-section::after {
    background: rgba(154, 165, 177, 0.12);
}

/* Tabs */
.steps-tabs li a {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.steps-tabs li a:hover,
.steps-tabs li.active a {
    background: #5b7cfa;
    box-shadow: 0 8px 24px rgba(91, 124, 250, 0.25);
}

/* Step number */
.step-number {
    background: #5b7cfa;
}

.steps-tabs li.active a .step-number,
.steps-tabs li a:hover .step-number {
    background: #fff;
    color: #5b7cfa;
}

/* Titles */
.step-title {
    color: #2f3a4a;
}

.steps-tabs li.active a .step-title,
.steps-tabs li a:hover .step-title {
    color: #2f3a4a;
}

/* Start now button */
.start-now-btn .btn-large {
    background: #5b7cfa;
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(91, 124, 250, 0.35);
}

.start-now-btn .btn-large:hover {
    box-shadow: 0 12px 30px rgba(91, 124, 250, 0.45);
}

/* Tab content card */
.how-it-works-section .tab-content {
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

/* Step icon */
.step-icon {
    background: #5b7cfa;
}

.step-icon i {
    color: #fff;
}

/* Content text */
.wrapper-content h3 {
    color: #2f3a4a;
}

.wrapper-content > p {
    color: #6b7280;
}

/* List detail */
.list-detail li {
    color: #4b5563;
}

.list-detail li i {
    color: #5b7cfa;
}

/* Demo video section */
.demo-video-section {
    background: rgba(255,255,255,0.7);
}

.demo-video-section h4 {
    color: #2f3a4a;
}

/* Video button */
.btn-video {
    background: #5b7cfa;
    box-shadow: 0 8px 22px rgba(91, 124, 250, 0.35);
}

.btn-video:hover {
    box-shadow: 0 12px 30px rgba(91, 124, 250, 0.45);
}










/* ========================================
   PLATFORMS SECTION
======================================== */

.platforms-section {
    background: #fff;
}

.platforms-section .section-title p {
    max-width: 700px;
    margin: 0 auto;
}

/* Platforms Grid - 4 kategori yan yana EŞİT GENIŞLIK */
.platforms-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolon sabit ve eşit */
    gap: 30px;
    margin-bottom: 40px;
}

/* Platform Category */
.platform-category {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    height: 100%; /* Tüm kartlar aynı yükseklik */
}

.platform-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Category Header */
.category-header {
    margin-bottom: 25px;
    flex-shrink: 0; /* Header sabit kalır */
}

.category-header i {
    font-size: 48px;
    color: #667eea;
    margin-bottom: 15px;
}

.category-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    min-height: 50px; /* Başlıklar aynı yükseklikte */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Platform Logos */
.platform-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    flex: 1; /* Kalan alanı doldurur */
}

.platform-item {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-height: 80px;
}

.platform-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.platform-item img {
    max-width: 100%;
    height: 35px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
}

.platform-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Platform CTA - TAM GENİŞLİK */
.platform-cta {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    color: #fff;
    margin-top: 20px;
    grid-column: 1 / -1; /* Tüm kolonları kaplar */
}

.platform-cta h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.platform-cta .btn-primary {
    background: #c4c2f1;
    color: #333 !important;
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s;
}

.platform-cta .btn-primary:hover {
    background: #4F46E5;
    color: #333 !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Responsive */
@media (max-width: 1199px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet: 2 kolon */
        gap: 25px;
    }
    
    .category-header h3 {
        font-size: 19px;
        min-height: 45px;
    }
}

@media (max-width: 767px) {
    .platforms-grid {
        grid-template-columns: 1fr; /* Mobil: 1 kolon */
        gap: 20px;
    }
    
    .platform-category {
        padding: 25px 20px;
    }
    
    .category-header h3 {
        min-height: auto;
    }
    
    .platform-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .platform-item {
        padding: 15px;
        min-height: 70px;
    }
    
    .platform-item img {
        height: 30px;
    }
    
    .category-header i {
        font-size: 40px;
    }
    
    .category-header h3 {
        font-size: 18px;
    }
    
    .platform-cta {
        padding: 35px 25px;
    }
    
    .platform-cta h4 {
        font-size: 22px;
    }
    
    .platform-cta .btn-primary {
        padding: 14px 30px;
        font-size: 16px;
    }
}













/* ========================================
   BLOG SECTION (ANASAYFA)
======================================== */

.blog-section {
    background: #fff;
}

.blog-section .section-title p {
    max-width: 650px;
    margin: 15px auto 0;
}

/* Blog Wrapper */
.blog-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.4s;
    margin-bottom: 30px;
}

.blog-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Blog Image */
.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.4s;
}

.blog-wrapper:hover .blog-image img {
    transform: scale(1.1);
}

/* Blog Badge */
.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.video-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.popular-badge {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    margin-right: 200px;
    margin-top: 35px;
}

/* Video Icon */
.caption {
    position: relative;
}

.caption img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-icon .icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    transition: all 0.3s;
}

.video-icon .icon:hover {
    transform: scale(1.1);
    background: #fff;
}

.video-icon .icon a {
    color: #667eea;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
}

/* Blog Content */
.blog-wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin: 25px 25px 15px;
    line-height: 1.4;
    min-height: 60px;
    text-align: center;
}

.blog-wrapper p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0 25px 20px;
    min-height: 75px;
}

/* Read More Link */
.blog-wrapper .link {
    display: inline-block;
    margin: 0 25px 25px;
    color: #667eea;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.blog-wrapper .link:hover {
    color: #764ba2;
    padding-left: 5px;
}

.blog-wrapper .link i {
    margin-left: 5px;
    transition: all 0.3s;
}

.blog-wrapper .link:hover i {
    margin-left: 10px;
}

/* Blog Meta */
.blog-meta {
    border-top: 1px solid #f0f0f0;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Author */
.author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.author .title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* Share Meta */
.blog-meta .share {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.blog-meta .share li {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta .share li i {
    color: #667eea;
}

.blog-meta .share li a {
    color: #999;
    transition: all 0.3s;
}

.blog-meta .share li a:hover {
    color: #667eea;
}

/* More Blogs Button */
.blog-section .btn-default {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    margin-top: 40px;
    transition: all 0.3s;
}

.blog-section .btn-default:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .blog-wrapper h3 {
        font-size: 20px;
        min-height: auto;
        text-align: center;
    }
    
    .blog-wrapper p {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .blog-wrapper {
        margin-bottom: 30px;
    }
    
    .blog-image img,
    .caption img {
        height: 220px;
    }
    
    .blog-wrapper h3 {
        font-size: 18px;
        margin: 20px 20px 12px;
        text-align: center;
    }
    
    .blog-wrapper p {
        margin: 0 20px 15px;
        font-size: 14px;
    }
    
    .blog-wrapper .link {
        margin: 0 20px 20px;
    }
    
    .blog-meta {
        padding: 15px 20px;
    }
    
    .blog-meta .share {
        font-size: 12px;
        gap: 10px;
    }
    
    .video-icon .icon {
        width: 60px;
        height: 60px;
    }
    
    .video-icon .icon a {
        font-size: 22px;
    }
}


/* ========================================
   BLOG CTA BUTTON (ISOLATED)
======================================== */

.blog-cta-wrapper {
    margin-top: 30px;
}

.blog-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 38px;
    border-radius: 40px;

    font-size: 16px;
    font-weight: 650;
    text-decoration: none;

    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid #667eea;

    transition: all 0.3s ease;
}

.blog-cta-button i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Hover */
.blog-cta-button:hover {
    background: linear-gradient(135deg, #7f92eb 0%, #7f5ea0 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.35);
    transform: translateY(-2px);
}

.blog-cta-button:hover i {
    transform: translateX(5px);
}




















/* ========================================
   FOOTER SECTION CSS
======================================== */

.footer-section {
    background: #2c3e50;
    color: #fff;
}

/* Footer Logo */
.footer-wrapper .logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-wrapper .logo img {
    max-height: 45px;
    width: auto;
}

/* Footer Açıklama */
.footer-description {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Sosyal İkonlar */
.social-icon {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.social-icon li a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s;
}

.social-icon li a:hover {
    background: #3498db;
    transform: translateY(-3px);
}

/* Footer Başlıklar */
.footer-wrapper h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Linkler */
.wrapper-option {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wrapper-option li {
    margin-bottom: 10px;
}

.wrapper-option li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all 0.3s;
}

.wrapper-option li a:hover {
    color: #fff;
    padding-left: 5px;
}



/* Copyright */
.copy-right {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
    margin-top: 0px;
}

.copy-right p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0 0 10px 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-bottom-links li a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    transition: all 0.3s;
}

.footer-bottom-links li a:hover {
    color: #fff;
}


.footer-shift-right {
    margin-left: 50px; /* 20–60px arası deneyebilirsin */
}


/* Responsive */
@media (max-width: 767px) {
    .footer-section {
        padding-top: 40px;
    }
    
    .footer-wrapper {
        margin-bottom: 35px;
        text-align: center;
    }
    
    .footer-shift-right {
    margin-right: 50px; /* 20–60px arası deneyebilirsin */
    }
    .social-icon {
        justify-content: center;
    }
    
    .wrapper-option {
        text-align: center;
    }
    
    .partners-row {
        gap: 30px;
    }
    
    .partners-row img {
        height: 28px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}















/* ========================================
   ABOUT SECTION
======================================== */

.about-section {
    background: #fff;
}

.about-content .sub-header {
    font-size: 14px;
    font-weight: 700;
    color: #667eea;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content .border {
    width: 60px;
    height: 3px;
    background: #667eea;
    margin: 15px 0 25px;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

/* Right Boxes */
.about-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.about-box {
    background: #f9fafc;
    padding: 30px;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.about-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.about-box i {
    font-size: 32px;
    color: #667eea;
    margin-bottom: 15px;
}

.about-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.about-box p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .about-content h2 {
        font-size: 30px;
    }

    .about-boxes {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
}





















/* ========================================
   HOW IT WORKS - SIMPLE
======================================== */

.how-it-works-simple {
    background: #f9fafc;
}

.how-it-works-simple .section-title p {
    max-width: 650px;
    margin: 15px auto 0;
}

/* Step Box */
.how-step {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 100%;
}

.how-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

/* Step Number */
.how-step .step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Step Title */
.how-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

/* Step Text */
.how-step p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .how-step {
        margin-bottom: 30px;
    }
}


.tab-content,
.wrapper-content {
    position: relative;
    background: transparent !important;
}

.how-it-works-section .tab-content::before,
.how-it-works-section .tab-content::after,
.how-it-works-section .wrapper-content::before,
.how-it-works-section .wrapper-content::after {
    display: none !important;
}
















/* ========================================
   HELP / FAQ SECTION
======================================== */

.help-section {
    background: #fff;
}

.help-section .section-title p {
    max-width: 700px;
    margin: 15px auto 0;
}

/* FAQ Wrapper */
.faq-wrapper {
    max-width: 800px;
    margin: 60px auto 0;
}

/* FAQ Item */
.faq-item {
    border-bottom: 1px solid #eee;
}

/* Question */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question .icon {
    font-size: 24px;
    color: #667eea;
    transition: transform 0.3s;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 0 20px;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Active */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-question .icon {
    transform: rotate(45deg);
}











/* ========================================
   CONTACT SECTİON
======================================== */

/* Contact page spacing adjustment */
.contact-section {
    padding-top: 0px;
}



















/* ========================================
   PRICING PAGE
======================================== */

.pricing-page {
    background: #f8f9fa;
}

/* Pricing Hero */
.pricing-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.pricing-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.page-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    margin-top: 20px;
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Pricing Section */
.pricing-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.pricing-row {
    margin-bottom: 50px;
}

/* Pricing Card */
.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    position: relative;
    overflow: visible;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(250, 112, 154, 0.4);
}

/* Popular Card */
.pricing-card.popular {
    border: 3px solid #667eea;
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: translateY(-15px) scale(1.05);
}

/* Pricing Header */
.pricing-header {
    margin-bottom: 25px;
}

.package-name {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Pricing Price */
.pricing-price {
    margin-bottom: 30px;
    padding: 25px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.currency {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    vertical-align: top;
    margin-right: 5px;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: #333;
    line-height: 1;
}

/* Pricing Features */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    color: #666;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #667eea;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Buy Button */
.btn-buy {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.btn-buy:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    text-decoration: none;
}

.btn-buy i {
    margin-left: 8px;
    transition: all 0.3s;
}

.btn-buy:hover i {
    margin-left: 12px;
}

/* Pricing Info */
.pricing-info {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
}

.pricing-info p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.pricing-info p:last-child {
    margin-bottom: 0;
}

.pricing-info i {
    color: #667eea;
    margin-right: 8px;
}

.pricing-info a {
    color: #667eea;
    font-weight: 600;
    text-decoration: underline;
}

.pricing-info a:hover {
    color: #764ba2;
}

/* ========================================
   TESTIMONIALS SECTION
======================================== */

.testimonials-section {
    background: #fff;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.avatar-initials {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.testimonial-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}


/* ===============================
   PRICING FAQ CARDS (ISOLATED)
================================ */

.pricing-faq-cards {
    background: #fff;
}

/* Grid */
.pricing-faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

/* Card */
.pricing-faq-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 30px 26px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.pricing-faq-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

/* Question */
.pricing-faq-question {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
    line-height: 1.4;
}

/* Answer */
.pricing-faq-answer {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}

.pricing-faq-cards {
    padding-top: 0px;   
}



/* Responsive */
@media (max-width: 991px) {
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .amount {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .pricing-hero {
        padding: 80px 0 60px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 15px;
    }
    
    .pricing-section {
        padding: 60px 0;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .amount {
        font-size: 42px;
    }
    
    .pricing-features li {
        font-size: 13px;
    }
    
    .pricing-info {
        padding: 25px 20px;
    }
    
    .pricing-info p {
        font-size: 14px;
    }
    
    .faq-wrapper {
        padding: 25px 20px;
    }
    
    .faq-answer p {
        padding-left: 0;
        margin-top: 10px;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
}


/* Responsive */
@media (max-width: 1200px) {
    .pricing-faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .pricing-faq-grid {
        grid-template-columns: 1fr;
    }
}




















/* =========================
   FORGOT PASSWORD
========================= */

.auth-simple-section {
    min-height: 100vh;
    background: #f6f8fb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-container {
    background: #fff;
    width: 100%;
    max-width: 420px;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.auth-title {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.auth-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Form */
.auth-form .form-group {
    text-align: left;
    margin-bottom: 25px;
}

.auth-form label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 6px;
}

.auth-form input {
    width: 100%;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0 15px;
    font-size: 14px;
    transition: all 0.3s;
}

.auth-form input:focus {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}

/* Button */
.auth-btn {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 12px;
    background: #4F46E5;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.auth-btn:hover {
    background: #4338ca;
    transform: translateY(-1px);
}

/* Footer */
.auth-footer {
    margin-top: 25px;
}

.auth-footer a {
    font-size: 14px;
    color: #4F46E5;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}






















