/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn-primary {
    background: #000;
    color: white;
    padding: 8px 22px;
    border: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(1, 1, 0, 0.3);
}

.btn-outline {
    background: transparent;
    color: #15514D;
    padding: 12px 24px;
    border: 2px solid #15514D;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #2F7F76;
    color: #2F7F76;
}

.btn-outline_beyaz {
    background: transparent;
    color: #fff;
    padding: 12px 24px;
    border: 2px solid #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-outline_beyaz:hover {
    border-color: #fff;
    color: #fff;
}

.btn-large {
    padding: 10px 23px 7px 23px;
    font-size: 1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Hero CTA Button - Beyaz arka plan, siyah yazı */
.btn-hero-cta {
    position: relative;
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    z-index: 1;
}

.btn-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.btn-hero-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    background: #f5f5f5;
    border-color: #ffffff;
    box-shadow:
        0 8px 25px rgba(255, 255, 255, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
}

.btn-hero-cta:hover::before {
    left: 100%;
}

.btn-hero-cta:hover::after {
    width: 300px;
    height: 300px;
    opacity: 0;
    transition: all 0.6s ease;
}

/* Yıldız parıltısı efekti */
.btn-hero-cta .star-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
}

.btn-hero-cta:hover .star-sparkle {
    animation: sparkle 0.6s ease forwards;
}

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0);
    }
}

/* Hero Secondary Button - Destek al için */
.btn-hero-secondary {
    position: relative;
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-hero-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.btn-hero-secondary:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover::before {
    opacity: 1;
}

.btn-hero-secondary:hover::after {
    width: 80%;
}

/* Announcement Bar */
.announcement-bar {
    background: #262626;
    color: white;
    padding: 8px 0;
    text-align: center;
    position: absolute;
    width: 100%;
    z-index: 1001;
    font-size: 14px;
}

.announcement-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.announcement-link {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.announcement-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: white;
}

/* Header - Varsayılan: Diğer sayfalar için tam genişlik */
.header {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 40px);
    max-width: 95%;
    border-radius: 16px;
    z-index: 1000;
    transition: background 0.3s ease, top 0.3s ease;
    /* GPU layer isolation for smooth scroll */
    transform: translateZ(0);
    will-change: transform;
}

/* Sayfa scroll edildiğinde */
.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Header - index.php için */
.is-index-page .header {
    top: 60px;
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
    max-width: none;
    margin: 0;
    height: 70px;
}

.nav-buttons {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 25px;
    height: 100%;
}

.nav-buttons .nav-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0px;
    text-decoration: none;
}

.logo-img {
    height: 32px;
    width: auto;
    margin-right: 5px;
}

.logo-text {
    color: #000;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0px;

}

.logo-text-light {
    font-weight: 300;
}

/* Navigation Styles */
.nav-mobile,
.mobile-menu {
    display: none;
}

.nav-menu-desktop {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 2rem;
}

.nav-dropdown {
    position: relative;
}

.nav-menu-desktop>span {
    font-family: 'Inter', sans-serif;
}

.nav-dropdown-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #797979;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-dropdown-btn:hover {
    color: #000;
    cursor: pointer;
}

.nav-dropdown-btn svg {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-btn svg {
    transform: rotate(180deg);
}

.nav-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(-10px);
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-wide {
    min-width: 600px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.dropdown-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.coming-soon {
    background: #fef3c7;
    color: #92400e;
    font-size: 0.7rem;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-weight: 500;
}

/* ===== Rich "Özellikler" Mega Menu ===== */
.nav-dropdown-mega-pro {
    min-width: 740px;
    max-width: calc(100vw - 24px);
    padding: 1.15rem 1.4rem 1rem;
}

.mega-pro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    gap: 0.5rem 1.6rem;
}

.mega-pro-col {
    display: flex;
    flex-direction: column;
}

.mega-pro-title {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.66rem;
    font-weight: 700;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding-bottom: 0.5rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid #eef0f3;
}

.mega-pro-title i {
    color: #2F7F76;
    font-size: 0.78rem;
}

.mega-pro-col .mega-pro-title:not(:first-child) {
    margin-top: 0.85rem;
}

.nav-dropdown-mega-pro .mega-pro-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.42rem 0.5rem;
    border-radius: 10px;
    color: #1f2937;
    transition: background 0.18s ease;
}

.nav-dropdown-mega-pro .mega-pro-item:hover {
    background: #f1faf7;
    color: #1f2937;
}

.nav-dropdown-mega-pro .mega-pro-item > i {
    font-size: 0.82rem;
    color: #2F7F76;
    margin-top: 0.18rem;
    width: 17px;
    text-align: center;
    flex-shrink: 0;
}

.mpi-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.mpi-title {
    font-size: 0.84rem;
    font-weight: 600;
    color: #1f2937;
}

.mpi-desc {
    font-size: 0.71rem;
    color: #9aa3af;
    font-weight: 400;
}

.nav-dropdown-mega-pro .mega-pro-item:hover .mpi-title {
    color: #2F7F76;
}

.mega-pro-foot {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.15rem 1.1rem;
    margin-top: 0.85rem;
    padding-top: 0.8rem;
    border-top: 1px solid #eef0f3;
}

.mega-pro-foot-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.66rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mega-pro-foot-label i {
    color: #2F7F76;
}

.nav-dropdown-mega-pro .mega-pro-foot > a {
    display: inline-flex;
    padding: 0.2rem 0;
    font-size: 0.78rem;
    color: #4b5563;
    font-weight: 500;
}

.nav-dropdown-mega-pro .mega-pro-foot > a:hover {
    color: #2F7F76;
}

.nav-dropdown-mega-pro .mega-pro-foot > a.mega-pro-all {
    margin-left: auto;
    font-weight: 700;
    color: #2F7F76;
}

@media (max-width: 1140px) {
    .nav-dropdown-mega-pro {
        min-width: 640px;
    }
    .mega-pro-grid {
        grid-template-columns: repeat(3, minmax(180px, 1fr));
        gap: 0.4rem 1.1rem;
    }
    .mpi-desc {
        font-size: 0.68rem;
    }
}

.nav-dropdown-content a {
    color: #374151;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown-content a:hover {
    color: #2F7F76;
}

.nav-link {
    color: #797979;
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.nav-link:hover {
    color: #333;
}

/* Responsive Header Adjustments */
@media (max-width: 1100px) {
    .nav-menu-desktop {
        gap: 0.5rem;
        padding-left: 1rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .nav-buttons {
        gap: 0.8rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu-desktop {
        display: none;
    }

    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-mobile {
        display: flex;
    }
}

/* Hero Section */
.hero {
    padding: 200px 0 80px;
    background-color: #01013b;
    background-image: url('../img/arkaplan.jpg');
    background-size: 1120px auto;
    background-position: center -50px;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

/* Hero Vignette Efekti - Kenarlardan ortaya doğru solma */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 35% 95% at center 40%,
            transparent 0%,
            transparent 40%,
            rgba(1, 1, 59, 0.5) 60%,
            rgba(1, 1, 59, 0.85) 80%,
            rgba(1, 1, 59, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hero Yıldız Efekti - Optimized (15 gradients instead of 45) */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(1px 1px at 5% 15%, rgba(255, 255, 255, 0.7) 50%, transparent 100%),
        radial-gradient(1px 1px at 15% 45%, rgba(255, 255, 255, 0.6) 50%, transparent 100%),
        radial-gradient(1px 1px at 25% 75%, rgba(255, 255, 255, 0.8) 50%, transparent 100%),
        radial-gradient(1px 1px at 35% 25%, rgba(255, 255, 255, 0.5) 50%, transparent 100%),
        radial-gradient(1px 1px at 45% 85%, rgba(255, 255, 255, 0.7) 50%, transparent 100%),
        radial-gradient(1px 1px at 55% 35%, rgba(255, 255, 255, 0.6) 50%, transparent 100%),
        radial-gradient(1px 1px at 65% 65%, rgba(255, 255, 255, 0.8) 50%, transparent 100%),
        radial-gradient(1px 1px at 75% 10%, rgba(255, 255, 255, 0.5) 50%, transparent 100%),
        radial-gradient(1px 1px at 85% 55%, rgba(255, 255, 255, 0.7) 50%, transparent 100%),
        radial-gradient(1px 1px at 95% 80%, rgba(255, 255, 255, 0.6) 50%, transparent 100%),
        radial-gradient(1px 1px at 10% 90%, rgba(255, 255, 255, 0.5) 50%, transparent 100%),
        radial-gradient(1px 1px at 30% 5%, rgba(255, 255, 255, 0.7) 50%, transparent 100%),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.6) 50%, transparent 100%),
        radial-gradient(1px 1px at 70% 40%, rgba(255, 255, 255, 0.8) 50%, transparent 100%),
        radial-gradient(1px 1px at 90% 20%, rgba(255, 255, 255, 0.5) 50%, transparent 100%);
    background-size: 100% 100%;
    /* animation: twinkle 4s ease-in-out infinite; -- DISABLED for GPU performance */
    z-index: 1;
    pointer-events: none;
    will-change: opacity;
    /* Layer isolation */
}


@keyframes twinkle {

    0%,
    100% {
        opacity: 0.4;
    }

    25% {
        opacity: 0.8;
    }

    50% {
        opacity: 0.5;
    }

    75% {
        opacity: 1;
    }
}

/* Kayan Yıldızlar - JavaScript ile çiziliyor (hero-animation.js) */

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

/* Hero Browser Frame */
.hero-browser-wrapper {
    position: relative;
    width: 95%;
    max-width: 1000px;
    margin: 60px auto -200px;
    border-radius: 16px;
    overflow: hidden;
    /* Simplified shadow for better GPU performance */
    box-shadow:
        0 15px 35px -10px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 5;
    /* GPU layer isolation */
    transform: translateZ(0);
}

.hero-browser-frame {
    background: rgba(30, 30, 50, 0.95);
    /* Solid background instead of blur for GPU performance */
    /* backdrop-filter: blur(10px); -- DISABLED for GPU performance */
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-browser-frame .browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hero-browser-frame .dot-red {
    background: #ff5f57;
}

.hero-browser-frame .dot-yellow {
    background: #ffbd2e;
}

.hero-browser-frame .dot-green {
    background: #28c840;
}

.hero-browser-frame .browser-address {
    flex: 1;
    margin-left: 16px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.hero-browser-frame .browser-address span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.hero-browser-content {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 */
    background-image: url('../img/videoarkaplan.png');
    background-size: 100% 91%;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-browser-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-browser-placeholder .play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(80, 80, 100, 0.7);
    /* Solid background instead of blur */
    /* backdrop-filter: blur(10px); -- DISABLED for GPU performance */
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-browser-placeholder .play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.hero-browser-placeholder .play-icon {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
}

/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    width: 45%;
    height: 100%;
    background-image: url('../img/hero-illustration-left.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0vh;
    width: 60%;
    height: 100%;
    background-image: url('../img/hero-illustration-right.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 1;
}

.hero::before {
    left: -50px;
    transform: scaleX(-1);
} 

.hero::after {
    right: -380px;
}
*/
.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 100%;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.text-green-800 {
    color: #fff;
}

.text-orange-500 {
    color: #fff;
}

/* .text-orange-800 {
    color: #9a3412;
} */

.hero-subtitle {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-note {
    color: #fff;
    font-size: 0.9rem;
}

/* Hero Features - İkonlu özellik kutuları */
.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature-icon {

    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-feature-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.hero-feature span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-feature:hover .hero-feature-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-small-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-small-title p {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.4;
}

.hidden {
    display: none;
}

/* ==========================================
   Management Solutions Carousel Section
   ========================================== */
.management-section {
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.management-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.management-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 50px;
}

.management-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background: #f5f5f5;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.carousel-arrow svg {
    color: #333;
}

.management-carousel {
    flex: 1;
    overflow: hidden;
}

.management-cards {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
}

.management-card {
    min-width: 280px;
    height: 380px;
    border-radius: 20px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.management-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Kart Gradient Renkleri */
.card-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.card-gradient-purple {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
}

.card-green {
    background: linear-gradient(135deg, rgb(5, 162, 112) 0%, #2A8477 100%);
}

.card-blue {
    background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
}

.card-light-purple {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
}

.card-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
}

.card-orange {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 100%);
}

.card-header {
    margin-bottom: 20px;
}

.card-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.2;
    text-decoration: none;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.25);
    /* Slightly more opaque instead of blur */
    /* backdrop-filter: blur(10px); -- DISABLED for GPU performance */
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #fff;
    font-weight: 500;
}

.card-badge i {
    font-size: 0.7rem;
}

.badge-green {
    background: rgba(255, 255, 255, 0.25);
}

.badge-blue {
    background: rgba(255, 255, 255, 0.25);
}

.badge-teal {
    background: rgba(255, 255, 255, 0.25);
}

.badge-orange {
    background: rgba(255, 255, 255, 0.25);
}

.card-preview {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.card-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.card-preview-placeholder {
    width: 100%;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Placeholder simgeleri */
.preview-chart {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: auto;
}

.preview-stats {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.stat-item {
    width: 60px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

.preview-kanban {
    display: flex;
    gap: 8px;
    height: 100%;
}

.kanban-col {
    flex: 1;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 8px;
}

.preview-tickets {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ticket-item {
    height: 35px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.preview-graph {
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    border-radius: 8px;
}

.preview-team {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding-top: 20px;
}

.team-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.card-preview-image.no-image {
    background: rgba(255, 255, 255, 0.2);
}

.preview-factory {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    justify-content: center;
    height: 100%;
    padding: 20px;
}

.factory-bar {
    width: 30px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

.factory-bar:nth-child(1) {
    height: 40%;
}

.factory-bar:nth-child(2) {
    height: 70%;
}

.factory-bar:nth-child(3) {
    height: 55%;
}

.factory-bar:nth-child(4) {
    height: 85%;
}

/* Responsive */
@media (max-width: 1024px) {
    .management-title {
        font-size: 1.75rem;
    }

    .management-card {
        min-width: 260px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .management-section {
        padding: 60px 0;
    }

    .management-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .management-card {
        min-width: 240px;
        height: 320px;
        padding: 20px;
    }

    .card-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .management-carousel-wrapper {
        gap: 10px;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }

    .management-card {
        min-width: 220px;
        height: 300px;
    }
}

/* Footer */
/* Footer - Dark Theme */
.footer {
    background: #000000;
    color: #fff;
    padding: 80px 0 40px;
    border-top: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: #fff;
}

/* New Legal Footer Section (Qualcomm Style) */
.footer-legal-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-legal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    /* Reduced gap */
    margin-bottom: 15px;
    /* Reduced bottom margin */
}

/* Mini Logo for Legal Bar */
.footer-logo-mini {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-logo-mini img {
    height: 18px;
    width: auto;
}

.footer-logo-mini span {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.footer-legal-links {
    display: flex;
    gap: 20px;
    /* Slightly tighter gap */
    flex-wrap: wrap;
    align-items: center;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: color 0.2s;
    line-height: 1;
}

.footer-legal-links a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-language {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    margin-left: auto;
}

.footer-copyright-row {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 5px;
}

/* Blank Template Styles */
.main-content {
    margin-top: 108.4px;
    /* Header height + announcement bar */
    min-height: calc(100vh - 108.4px);
    padding: 2rem 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-placeholder {
    padding: 4rem 0;
    text-align: center;
    color: #666;
}

.section {
    padding: 4rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    color: #2F7F76;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* ========================================
   RESPONSIVE - Mobile Styles
   ======================================== */

@media (max-width: 768px) {

    /* Hero Mobile */
    .hero {
        background-size: 100% auto;
        background-position: center 8%;
        padding: 140px 0 60px;
    }

    /* Mobilde vignette efektini kaldır */
    .hero::before {
        display: none;
    }

    /* Announcement Bar - Mobile */
    .announcement-bar {
        padding: 8px 10px;
        font-size: 0.8rem;
    }

    .announcement-content {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 5px;
    }

    /* Header - Mobile */
    .header {
        top: 32px;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
        border-radius: 16px;
        overflow: hidden;
    }

    .is-index-page .header {
        top: 32px;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
        border-radius: 16px;
    }

    .nav-container {
        height: 56px;
        padding: 0 15px;
    }

    /* Logo - Mobile */
    .logo-img {
        height: 26px;
    }

    .logo-text {
        font-size: 1rem;
    }

    /* Desktop Menu - Hide on Mobile */
    .nav-menu-desktop {
        display: none;
    }

    /* Desktop Nav Buttons - Hide on Mobile */
    .nav-buttons {
        display: none;
    }

    /* Mobile Menu - Show on Mobile */
    .nav-mobile {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    /* Hamburger Button */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }

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

    /* Hero Content - Mobile */
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: auto;
        justify-content: center;
    }

    .hero-features {
        gap: 1rem;
    }

    .hero-browser-wrapper {
        width: 100%;
        margin: 40px auto -100px;
    }

    /* Footer - Mobile */
    .footer {
        padding: 50px 0 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-legal-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        gap: 10px 15px;
    }

    .footer-language {
        margin-left: 0;
    }

    /* ===== Mobile Menu Styles ===== */
    .mobile-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        background: white;
        border-top: 1px solid #eee;
        transition: max-height 0.3s ease;
    }

    .mobile-menu.active {
        max-height: 500px;
    }

    .mobile-menu-content {
        padding: 15px 20px 20px;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .mobile-menu-link {
        display: block;
        padding: 14px 0;
        color: #333;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        border-bottom: 1px solid #f0f0f0;
        transition: color 0.2s ease;
    }

    .mobile-menu-link:last-child {
        border-bottom: none;
    }

    .mobile-menu-link:hover,
    .mobile-menu-link:active {
        color: #2F7F76;
    }

    .mobile-menu-divider {
        height: 1px;
        background: #e5e7eb;
        margin: 10px 0;
    }

    .mobile-menu-logout {
        color: #dc2626;
    }

    /* Mobile Menu Button Style */
    .mobile-menu-btn {
        background: #111827 !important;
        color: #fff !important;
        text-align: center;
        padding: 14px 20px !important;
        border-radius: 10px;
        margin-top: 10px;
        border-bottom: none !important;
        font-weight: 600;
    }

    .mobile-menu-btn:hover,
    .mobile-menu-btn:active {
        background: #1f2937 !important;
        color: #fff !important;
    }

    /* Mobile Menu Accordion Styles */
    .mobile-menu-accordion {
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-menu-accordion-btn {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
        background: transparent;
        border: none;
        color: #333;
        font-size: 1rem;
        font-weight: 500;
        cursor: pointer;
        transition: color 0.2s ease;
    }

    .mobile-menu-accordion-btn:hover {
        color: #2F7F76;
    }

    .mobile-menu-accordion-btn i {
        transition: transform 0.3s ease;
        font-size: 0.75rem;
        color: #666;
    }

    .mobile-menu-accordion.active .mobile-menu-accordion-btn i {
        transform: rotate(180deg);
    }

    .mobile-menu-accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #f9fafb;
        margin: 0 -20px;
        padding: 0 20px;
    }

    .mobile-menu-accordion.active .mobile-menu-accordion-content {
        max-height: 600px;
        padding: 10px 20px 15px;
    }

    .mobile-submenu-title {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #111827;
        margin-bottom: 6px;
        padding: 8px 10px 6px;
        border-bottom: 1px solid #e5e7eb;
    }

    .mobile-submenu-title i {
        font-size: 0.85rem;
        color: #2F7F76;
    }

    .mobile-submenu-link {
        display: block;
        padding: 8px 10px;
        color: #374151;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        border-radius: 6px;
        transition: all 0.2s ease;
    }

    .mobile-submenu-link:hover,
    .mobile-submenu-link:active {
        background: #e5e7eb;
        color: #2F7F76;
    }

    /* Hamburger Active State (X shape) */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

/* Extra small devices */
@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .btn-small {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

/* ================================================
   İŞLETME TİPLERİ MEGA MENÜ STİLLERİ
   ================================================ */

/* Ana Dropdown Container */
.nav-dropdown-business-mega {
    min-width: 620px;
    display: flex;
    padding: 0;
    overflow: visible;
}

/* Sol Taraf: Kategori Listesi */
.business-categories-list {
    width: 220px;
    background: #f9fafb;
    padding: 0.75rem 0;
    border-right: 1px solid #e5e7eb;
}

.business-category-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    position: relative;
}

.business-category-item i:first-child {
    font-size: 1rem;
    width: 20px;
    text-align: center;
    color: #6b7280;
    transition: color 0.2s ease;
}

.business-category-item span {
    flex: 1;
}

.business-category-item .category-arrow {
    font-size: 0.7rem;
    color: #9ca3af;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
}

.business-category-item:hover,
.business-category-item.active {
    background: #fff;
    color: #111827;
}

.business-category-item:hover i:first-child,
.business-category-item.active i:first-child {
    color: #2F7F76;
}

.business-category-item:hover .category-arrow,
.business-category-item.active .category-arrow {
    opacity: 1;
    transform: translateX(0);
    color: #2F7F76;
}

/* Aktif kategori için sol kenar çizgisi */
.business-category-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #2F7F76;
}

/* Sağ Taraf: Alt Kategori Panelleri */
.business-subcategories {
    flex: 1;
    position: relative;
    background: #fff;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.subcategory-panel {
    display: none;
    padding: 1.25rem 1.5rem;
    opacity: 0;
    transition: all 0.25s ease;
}

.subcategory-panel.active {
    display: block;
    opacity: 1;
}

.subcategory-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.subcategory-panel a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.5rem;
    margin: 0 -0.5rem;
    color: #4b5563;
    text-decoration: none;
    font-size: 0.875rem;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.subcategory-panel a i {
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
    color: #9ca3af;
    transition: color 0.2s ease;
}

.subcategory-panel a:hover {
    background: #f3f4f6;
    color: #111827;
}

.subcategory-panel a:hover i {
    color: #2F7F76;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .nav-dropdown-business-mega {
        display: none;
    }
}

/* ================================================
   ANA SAYFA BLOG BÖLÜMÜ (Light Theme)
   ================================================ */

.home-blog-section {
    background: #ffffff;
    padding: 80px 20px;
}

.home-blog-section .section-header {
    text-align: center;
    margin-bottom: 48px;
}

.home-blog-section .section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    position: relative;
    display: inline-block;
}

.home-blog-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2F7F76;
    border-radius: 2px;
}

.home-blog-section .blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.home-blog-section .blog-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.home-blog-section .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.home-blog-section .blog-card-image-wrapper {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.home-blog-section .blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.home-blog-section .blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.home-blog-section .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.06) 100%);
    pointer-events: none;
}

.home-blog-section .blog-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-blog-section .blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.75rem;
}

.home-blog-section .post-category {
    color: #2F7F76;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.home-blog-section .post-date {
    color: #9ca3af;
    font-weight: 400;
}

.home-blog-section .blog-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px 0;
}

.home-blog-section .blog-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-blog-section .blog-card-title a:hover {
    color: #2F7F76;
}

.home-blog-section .blog-card-excerpt {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    flex: 1;
}

.home-blog-section .blog-grid-actions {
    text-align: center;
    margin-top: 48px;
}

.home-blog-section .btn-hero-secondary {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    background: #1a1a1a;
    color: #fff;
    border: 2px solid #1a1a1a;
    transition: all 0.3s ease;
}

.home-blog-section .btn-hero-secondary:hover {
    background: #2F7F76;
    border-color: #2F7F76;
}

@media (max-width: 1024px) {
    .home-blog-section .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .home-blog-section .blog-grid {
        grid-template-columns: 1fr;
    }

    .home-blog-section {
        padding: 60px 16px;
    }

    .home-blog-section .section-title {
        font-size: 1.6rem;
    }
}