/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066cc;
    --secondary-color: #004999;
    --accent-color: #ff6b00;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 5px 25px rgba(0,0,0,0.15);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background: var(--bg-light);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-demo {
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
}

.btn-demo:hover {
    background: #e55e00;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    overflow: visible;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    position: relative;
    overflow: visible;
    height: 100px !important; /* logo yüksekliğine eşitle */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.logo img {
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

.logo-akinsoft {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-soydan {
    width: 350px !important;
    height: 100px !important;
    object-fit: contain;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
    position: relative;
    overflow: visible;
}

.nav-menu > li {
    position: relative;
}

.akinsoft-logo-right {
    margin-left: auto;
    padding: 5px;
    display: flex;
    align-items: center;
}

.akinsoft-logo-right img {
    width: 200px;
    height: 200px;
    max-height: 200px;
    object-fit: contain;
}

.nav-menu > li > a {
    font-weight: 500;
    color: var(--text-dark);
    padding: 25px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu > li > a > i:first-child {
    color: var(--primary-color);
    font-size: 14px;
}

.nav-menu > li > a:not(.btn-demo):hover,
.nav-menu > li > a.active {
    color: var(--primary-color);
    background: var(--bg-light);
}

.nav-menu .dropdown-toggle {
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content-wrapper {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    animation: fadeInDown 1s ease;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 600;
    animation: fadeInDown 1s ease 0.2s;
    animation-fill-mode: both;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.hero-stats {
    display: flex;
    gap: 50px;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s;
    animation-fill-mode: both;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* Solutions Section */
.solutions {
    padding: 80px 0;
    background: var(--bg-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.solution-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
}

.solution-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.solution-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-light);
}

.feature-list i {
    color: #28a745;
    margin-right: 10px;
}

.card-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.card-link:hover {
    gap: 12px;
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-item {
    text-align: center;
    padding: 30px;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-item i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.why-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.why-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* About Home Section */
.about-home {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    list-style: none;
    margin: 30px 0;
}

.about-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.about-features i {
    color: #28a745;
    font-size: 20px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Sectors Section */
.sectors {
    padding: 80px 0;
    background: var(--white);
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.sector-item {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sector-item:hover {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.sector-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sector-item h4 {
    font-size: 18px;
    color: var(--text-dark);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Info Section */
.contact-info {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-col ul li i {
    color: var(--primary-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .logo {
        gap: 10px;
    }

    .logo-akinsoft {
        width: 60px;
        height: 60px;
    }

    .logo-soydan {
        width: 200px;
        max-height: 60px;
    }

    .navbar {
        padding: 8px 0;
        height: auto;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 65px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        gap: 30px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 50px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero h2 {
        font-size: 20px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .solution-card {
        padding: 30px 20px;
    }
}

/* Additional Pages Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

/* Solutions Detail Page */
.solution-detail {
    padding: 80px 0;
}

.solution-detail.alt-bg {
    background: var(--bg-light);
}

.detail-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.detail-image {
    position: sticky;
    top: 100px;
}

.detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.detail-image img:hover {
    transform: scale(1.02);
}

.detail-text h2 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.detail-text h2 i {
    color: var(--primary-color);
    margin-right: 15px;
}

.detail-text h3 {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 25px;
    font-weight: 500;
}

.detail-text h4 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 30px 0 20px;
}

.detail-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.detail-text ul {
    list-style: none;
    margin: 20px 0;
}

.detail-text ul li {
    padding: 10px 0;
    color: var(--text-light);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-box {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.solution-detail.alt-bg .feature-box {
    background: var(--white);
}

.feature-box i {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.feature-box h5 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.pricing-info {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.other-solutions {
    padding: 80px 0;
    background: var(--bg-light);
}

.other-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.other-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.other-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.other-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.other-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.other-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* About Page */
.about-page {
    padding: 80px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 30px;
    align-items: center;
}

.intro-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.intro-text .lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.intro-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
}

.mission-vision {
    padding: 80px 0;
    background: var(--bg-light);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
}

.mv-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.values {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px;
}

.value-item i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.why-choose-detailed {
    padding: 80px 0;
    background: var(--bg-light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.reason-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    padding-top: 70px;
}

.reason-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.reason-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.reason-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
}

.team-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.member-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 20px;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.team-member p {
    color: var(--text-light);
    line-height: 1.6;
}

.certificates {
    padding: 80px 0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.cert-item {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.cert-item i {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cert-item h4 {
    font-size: 18px;
    color: var(--text-dark);
}

/* Contact Page */
.contact-details {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
}

.contact-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-box p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-box a {
    color: var(--primary-color);
    font-weight: 600;
}

.small-text {
    font-size: 14px !important;
    opacity: 0.8;
}

.link-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white) !important;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.link-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-form-section {
    padding: 80px 0;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
}

.form-intro {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 50px 40px;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.form-intro p {
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.8;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-features .feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-features i {
    font-size: 20px;
    color: #28a745;
}

.contact-form {
    padding: 50px 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-label span {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.btn-large {
    padding: 15px 40px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.map-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.map-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.working-hours {
    padding: 80px 0;
}

.hours-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 40px;
}

.hours-header {
    text-align: center;
    margin-bottom: 40px;
}

.hours-header i {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hours-header h2 {
    font-size: 32px;
    color: var(--text-dark);
}

.hours-grid {
    display: grid;
    gap: 15px;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--bg-light);
    border-radius: 5px;
}

.day-hours.weekend {
    opacity: 0.6;
}

.day {
    font-weight: 500;
    color: var(--text-dark);
}

.hours {
    color: var(--text-light);
}

.support-note {
    margin-top: 30px;
    padding: 20px;
    background: #e7f3ff;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    display: flex;
    gap: 15px;
}

.support-note i {
    color: var(--primary-color);
    font-size: 20px;
    margin-top: 2px;
}

.support-note p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 24px;
    margin-top: 2px;
}

.faq-question h4 {
    font-size: 18px;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Demo Page */
.demo-benefits {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-card i {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.demo-form-section {
    padding: 80px 0;
}

.demo-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.form-sidebar {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.form-sidebar h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.process-steps {
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.contact-quick {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.contact-quick h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-quick .btn {
    display: block;
    margin-bottom: 10px;
}

.form-main {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header i {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.form-header p {
    color: var(--text-light);
}

.demo-form .form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--border-color);
}

.demo-form .form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: var(--primary-color);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.checkbox-item {
    display: block;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

.checkbox-item .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-label {
    background: #e7f3ff;
    border-color: var(--primary-color);
}

.checkbox-item .checkbox-label i {
    font-size: 28px;
    color: var(--primary-color);
}

.checkbox-item .checkbox-label strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.checkbox-item .checkbox-label small {
    display: block;
    color: var(--text-light);
    font-size: 12px;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-note i {
    color: var(--primary-color);
}

.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffc107;
    font-size: 18px;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.author {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.author strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        order: -1;
    }

    .detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .detail-image {
        position: relative;
        top: 0;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .intro-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
    }

    .form-intro {
        padding: 30px 25px;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .demo-form-wrapper {
        grid-template-columns: 1fr;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .intro-stats-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   AKINSOFT STYLE UPDATES
   ======================================== */

/* Top Bar */
.top-bar {
    background: #003d82;
    color: var(--white);
    padding: 5px 0;
    font-size: 12px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-links a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-links a:hover {
    color: #ffc107;
}

.top-bar-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-link {
    color: var(--white);
    padding: 5px 10px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.top-link:hover {
    color: #ffc107;
}

.top-link:first-child {
    border-left: none;
}

/* Mega Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
    margin-top: 0;
    pointer-events: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.dropdown-menu a i {
    width: 20px;
    color: var(--primary-color);
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

.mega-menu {
    min-width: 600px;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.mega-menu-column h4 {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.mega-menu-column a {
    padding: 8px 10px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mega-menu-column a i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 14px;
}

/* Hero Slider */
.hero-slider {
    background: #f5f5f5;
    padding: 0 0 10px 0; /* üst boşluğu kaldır, altı hafif bırak */
    overflow: hidden;
    width: 100%;
}

.hero-slider-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px 1fr 160px;
    align-items: stretch;
    gap: 15px;
    padding: 0 40px;
}

.slider-center .slider-frame {
    background: #f5f5f5;
    box-shadow: none;
    border-radius: 0;
    overflow: hidden;
}

.slider-center iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
}

.slider-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-side-left {
    padding-right: 10px;
}

.slider-side-right {
    padding-left: 0;
    padding-right: 30px;
}

.slider-side-content {
    color: var(--text-dark);
}

.slider-side-content h2 {
    font-size: 26px;
    margin-bottom: 10px;
}

.slider-side-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.slider-side-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-item-mini {
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-item-mini .stat-number {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-item-mini .stat-label {
    font-size: 12px;
    color: var(--text-light);
}

.slider-side-highlight {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.slider-side-highlight h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.slider-side-highlight ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.slider-side-highlight li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.slider-side-highlight li i {
    color: var(--primary-color);
}

@media (max-width: 1500px) {
    .hero-slider-inner {
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .hero-slider-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .slider-side {display:none;}
    .slider-frame {border-radius:0;}
}

@media (max-width: 768px) {
    .slider-center iframe {
        height: 400px; 
        min-height: 400px;
        max-width: 100%;
    }
    
    .hero-slider {
        padding: 10px 0;
    }
    
    .hero-slider-inner {
        padding: 0 10px;
    }
    
    .slider-frame {
        border-radius: 10px;
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .slider-center iframe {
        height: 350px; 
        min-height: 350px;
    }
    
    .hero-slider-inner {
        padding: 0 5px;
    }
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
    animation: slideIn 0.5s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-bg {
    padding: 100px 0;
    position: relative;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.slide-text {
    color: var(--white);
}

.slide-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.slide-subtitle {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.95;
}

.slide-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.slide-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* Stats Bar */
.stats-bar {
    background: var(--white);
    padding: 40px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stats-grid .stat-item {
    text-align: center;
}

.stats-grid .stat-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stats-grid .stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stats-grid .stat-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Main Categories */
.main-categories {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header.text-center {
    text-align: center;
}

.section-header h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 50px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.category-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-icon img {
    transform: scale(1.1);
}

.category-content {
    padding: 25px;
}

.category-content h3 {
    font-size: 16px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-content h4 {
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
}

.category-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.category-links a {
    color: var(--text-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.category-links a:before {
    content: "→";
    color: var(--primary-color);
    font-weight: bold;
}

.category-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Call Me Widget */
.call-me-widget {
    position: fixed;
    right: 30px;
    bottom: 120px;
    z-index: 999;
}

.call-me-toggle {
    background: linear-gradient(135deg, var(--accent-color) 0%, #cc5500 100%);
    color: var(--white);
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.call-me-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

.call-me-toggle i {
    font-size: 20px;
    animation: shake 1s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(10deg); }
    75% { transform: rotate(-10deg); }
}

.call-me-form {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s ease;
}

.call-me-form.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.call-me-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.call-me-header h3 {
    margin: 0;
    font-size: 18px;
}

.close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255,255,255,0.2);
}

.call-me-form form {
    padding: 25px;
}

.call-me-form .form-group {
    margin-bottom: 15px;
}

.call-me-form input,
.call-me-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.call-me-form input:focus,
.call-me-form select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.phone-input {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.phone-prefix {
    background: var(--bg-light);
    padding: 12px 15px;
    font-weight: 600;
    color: var(--text-dark);
    border-right: 2px solid var(--border-color);
}

.phone-input input {
    border: none;
    flex: 1;
}

/* Enhanced Footer */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding-top: 60px;
}

.footer-main {
    margin-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cccccc;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-info {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    background: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.footer-desc {
    color: #cccccc;
    line-height: 1.8;
    font-size: 14px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 14px;
}

.footer-contact .contact-item i {
    color: var(--primary-color);
    font-size: 16px;
}

.footer-contact .contact-item a {
    color: #cccccc;
}

.footer-contact .contact-item a:hover {
    color: var(--primary-color);
}

.footer-social h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-social .social-links {
    display: flex;
    gap: 10px;
}

.footer-social .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cccccc;
    font-size: 13px;
    padding: 0 10px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.footer-links a:first-child {
    border-left: none;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Updates */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-menu {
        min-width: 500px;
    }

    .mega-menu-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-nav.prev {
        left: 15px;
    }

    .slider-nav.next {
        right: 15px;
    }

    .slide-bg {
        padding: 60px 0;
    }

    .slide-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slide-title {
        font-size: 32px;
    }

    .slide-subtitle {
        font-size: 22px;
    }

    .slide-description {
        font-size: 16px;
    }

    .slide-image {
        order: -1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .dropdown-menu,
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 10px 0 10px 20px;
        background: #f8f9fa;
    }

    .dropdown.active .dropdown-menu,
    .dropdown.active .mega-menu {
        display: block;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    .mega-menu-column {
        margin-bottom: 15px;
    }
    
    .mega-menu-column h4 {
        font-size: 14px;
        margin-bottom: 8px;
        color: var(--primary-color);
    }
    
    .mega-menu-column a {
        padding: 6px 0;
        font-size: 13px;
    }

    .call-me-widget {
        right: 15px;
        bottom: 100px;
    }

    .call-me-toggle {
        padding: 12px 20px;
        font-size: 14px;
    }

    .call-me-form {
        width: 280px;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-soydan {
        width: 120px;
        max-height: 40px;
    }

    .navbar {
        padding: 5px 0;
    }

    .nav-menu {
        top: 55px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .slide-title {
        font-size: 24px;
    }

    .slide-subtitle {
        font-size: 18px;
    }

    .slide-buttons {
        flex-direction: column;
    }

    .call-me-toggle span {
        display: none;
    }

    .call-me-toggle {
        padding: 12px;
        border-radius: 50%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PRODUCT DETAIL PAGES
   ======================================== */

/* Page Header */
.page-header {
    padding: 80px 0 60px;
    color: var(--white);
    text-align: center;
}

.page-header-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 20px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--white);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Product Detail */
.product-detail {
    padding: 80px 0;
}

.product-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.product-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.product-text h2 {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 10px;
}

.product-text h3 {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.product-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.product-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.highlight-item i {
    color: #28a745;
    font-size: 20px;
}

.product-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Modules Grid */
.product-modules {
    margin-bottom: 80px;
}

.product-modules h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.module-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.module-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.module-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.module-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Features List */
.product-features {
    margin-bottom: 80px;
}

.product-features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature-item i {
    color: #28a745;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Who Should Use */
.who-should-use h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.target-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.target-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.target-card i {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.target-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.target-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive Product Pages */
@media (max-width: 1200px) {
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 32px;
    }
    
    .product-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .modules-grid,
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .product-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .modules-grid,
    .target-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   SEO H1 - Görsel olarak slider içinde uyumlu
   =============================================== */
.hero-slider h1 {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===============================================
   ONLINE ÖDEME SAYFASI STİLLERİ
   =============================================== */

/* Ödeme Butonu - Top Bar */
.btn-payment {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: white !important;
    padding: 8px 15px !important;
    border-radius: 20px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    animation: pulse-payment 2s infinite;
    border: none !important;
    position: relative;
    z-index: 100;
    cursor: pointer !important;
    pointer-events: auto !important;
    text-decoration: none !important;
}

.btn-payment:hover {
    background: linear-gradient(135deg, #20c997, #28a745) !important;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
    cursor: pointer !important;
}

.btn-payment.active {
    background: linear-gradient(135deg, #ffc107, #ff9800) !important;
}

@keyframes pulse-payment {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
}

/* Ödeme Sayfası Ana Bölümü */
.payment-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.payment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Ödeme Bilgi Kartı */
.payment-info-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.payment-info-card h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-info-card h3 {
    color: var(--text-dark);
    font-size: 18px;
    margin: 25px 0 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-info-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.security-badges {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.payment-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-features li {
    padding: 10px 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-features li i {
    color: #28a745;
}

.contact-support {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #0066cc, #004999);
    border-radius: 15px;
    color: white;
}

.contact-support h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-support p {
    margin: 5px 0;
    color: rgba(255,255,255,0.9);
}

.contact-support a {
    color: white;
    text-decoration: none;
}

.contact-support a:hover {
    text-decoration: underline;
}

/* Ödeme Form Kartı */
.payment-form-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.payment-form-card h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.payment-form-card .form-group {
    margin-bottom: 20px;
}

.payment-form-card label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.payment-form-card label i {
    margin-right: 5px;
    color: var(--primary-color);
}

.payment-form-card input,
.payment-form-card select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.payment-form-card input:focus,
.payment-form-card select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0,102,204,0.1);
}

.payment-form-card input::placeholder {
    color: #adb5bd;
}

.amount-display {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
}

.amount-display span {
    font-size: 16px;
    color: var(--text-light);
}

.amount-display strong {
    font-size: 28px;
    color: #28a745;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

.payment-note {
    margin-top: 15px;
    font-size: 13px;
    color: var(--text-light);
    text-align: center;
}

.payment-note i {
    margin-right: 5px;
}

/* Responsive - Ödeme Sayfası */
@media (max-width: 992px) {
    .payment-wrapper {
        grid-template-columns: 1fr;
    }
    
    .payment-info-card {
        order: 2;
    }
    
    .payment-form-container {
        order: 1;
    }
}

@media (max-width: 576px) {
    .payment-section {
        padding: 40px 0;
    }
    
    .payment-info-card,
    .payment-form-card {
        padding: 25px;
    }
    
    .payment-form-card h2 {
        font-size: 20px;
    }
    
    .amount-display strong {
        font-size: 24px;
    }
    
    .security-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-payment {
        font-size: 12px;
        padding: 6px 12px !important;
    }
}

