/* Global Stiller */
:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #457b9d;
    --light-color: #f1faee;
    --dark-color: #1d3557;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --whatsapp-color: #25d366;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Font rendering iyileştirmeleri */
html {
    text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f8f9fa;
    font-size: 18px;
    overflow-x: hidden;
    width: 100%;
    padding-bottom: 0;
    min-height: 100vh;
    position: relative;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 3rem 0;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
}

h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

h2:after {
    display: none;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.big-text {
    font-size: 1.6rem;
    text-align: center;
    font-weight: 600;
    line-height: 1.4;
    margin: 1.5rem 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #c1272d;
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #152848;
    color: white;
}

.btn-call {
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-call:hover {
    background-color: #c1272d;
    color: white;
}

/* Header Stili */
.main-header {
    background-color: white;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Logo Alanı */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
    padding: 5px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    background-color: #005195;
    padding: 8px 15px;
    border-radius: 5px;
}

.logo-main {
    color: white;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo-sub {
    color: #ccc;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* İletişim Alanı */
.contact-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-icon {
    color: #e63946;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-icon i {
    font-size: 30px;
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.call-text {
    font-size: 12px;
    color: #005195;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.phone-number {
    font-size: 24px;
    font-weight: 900;
    color: #333;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* Menü Butonu */
.menu-toggle {
    background-color: #e63946;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.menu-toggle i {
    font-size: 20px;
}

@media (max-width: 768px) {
    .logo-main {
        font-size: 20px;
    }
    
    .logo-sub {
        font-size: 14px;
    }
    
    .call-text {
        font-size: 10px;
    }
    
    .phone-number {
        font-size: 18px;
    }
    
    .phone-icon i {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .logo-sub {
        display: none;
    }
    
    .logo-main {
        font-size: 16px;
    }
    
    .call-text {
        display: none;
    }
    
    .phone-number {
        font-size: 16px;
    }
}

/* Hero Section */
.hero {
    background-color: #f0f2f5;
    padding: 3rem 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 2.6rem;
    color: var(--secondary-color);
}

/* Ara Çağrı Kutusu */
.call-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0 1rem;
}

.arrow-down {
    width: 60px;
    height: 60px;
    margin: 0.5rem 0;
    animation: bounce 2s infinite;
}

.flip-arrow {
    transform: rotate(180deg);
}

.call-box {
    background-color: white;
    border: 4px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.call-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.big-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 10px;
    gap: 0.8rem;
    width: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.big-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: white !important;
}

.big-button i {
    font-size: 2rem;
}

.big-button {
    background-color: var(--primary-color);
    color: white;
}

.whatsapp-text {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.whatsapp-box {
    margin-bottom: 1.5rem;
}

.whatsapp-button {
    background-color: var(--whatsapp-color);
    color: white;
}

.whatsapp-button:hover {
    color: white;
    background-color: #128c7e;
}

.service-hours {
    background-color: white;
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1.1rem;
}

/* Why Us Section */
.why-us {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0;
}

.why-us h2 {
    color: white;
}

.why-us h2:after {
    background-color: var(--light-color);
}

/* Features section responsive tasarımı */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features {
        grid-template-columns: 1fr;
    }
}

.feature {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    transition: var(--transition);
}

.feature:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.feature i {
    font-size: 3rem;
    color: var(--light-color);
    margin-bottom: 1rem;
}

.feature h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.feature p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Areas Section */
.areas {
    background-color: #f0f2f5;
    padding: 4rem 0;
}

.areas h2 {
    position: relative;
    margin-bottom: 3rem;
}

.areas h2:after {
    display: none;
}

/* Grid yapısı - her zaman 2 sütun */
.area-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Area buttons responsive iyileştirmesi */
.area-button {
    background-color: #fff;
    color: #333;
    padding: 12px 10px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    margin: 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    width: 100%;
    box-sizing: border-box;
    display: block;
}

.area-button:hover {
    background-color: #e63946;
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

/* Küçük mobil ekranlarda font boyutu ayarı */
@media (max-width: 480px) {
    .area-button {
        font-size: 12px;
        padding: 8px 5px;
    }
    
    .area-list {
        gap: 8px !important;
    }
}

/* Büyük ekranlarda 3 sütun */
@media (min-width: 992px) {
    .area-list {
        grid-template-columns: repeat(3, 1fr) !important;
        max-width: 800px;
    }
}

/* FAQ Section */
.faq {
    background-color: #f8f9fa;
    padding: 4rem 0 2rem;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    overflow: hidden;
}

.accordion-item:hover {
    border-color: var(--primary-color);
}

.accordion-item h3 {
    padding: 1.5rem;
    cursor: pointer;
    position: relative;
    font-size: 1.3rem;
    color: var(--secondary-color);
    user-select: none;
}

.accordion-item h3:after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--primary-color);
}

.accordion-item.active h3:after {
    content: '-';
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.2s ease-out;
    will-change: max-height, padding;
}

.accordion-item.active .accordion-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.accordion-content p {
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 2rem;
}

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

.footer-logo h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #ccc;
    font-size: 1.1rem;
}

.footer-call {
    margin-top: 1.5rem;
}

.footer-call p {
    margin-bottom: 0.5rem;
}

.footer-phone {
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-phone:hover {
    color: var(--primary-color);
}

.footer-address h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-address p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    color: #ccc;
}

/* Floating CTA - Çağrı Merkezi Barı */
.floating-cta {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

.floating-cta a {
    display: block !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px 0 !important;
    border-radius: 0 !important;
    width: 50% !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    white-space: nowrap !important;
    border: none !important;
    text-decoration: none !important;
    transition: none !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    float: left !important;
    height: 100% !important;
}

.floating-cta .btn-call {
    background-color: #005195 !important;
    color: white !important;
}

.floating-cta .btn-whatsapp {
    background-color: #25d366 !important;
    color: white !important;
}

.floating-cta i {
    display: inline-block !important;
    margin-right: 8px !important;
    font-size: 1.4rem !important;
    vertical-align: middle !important;
}

.floating-cta span {
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Mobil cihazlarda sadece alt çubuk görünsün */
@media screen and (max-width: 992px) {
    .floating-cta {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        z-index: 9999 !important;
        width: 100vw !important;
        max-width: 100% !important;
    }
    
    .floating-cta a {
        flex: 1 !important;
        float: none !important;
        border: 0 !important;
    }
    
    body {
        margin-bottom: 50px !important;
        padding-bottom: 0 !important;
    }
    
    html {
        height: 100%;
        position: relative;
        overflow-x: hidden !important;
    }
}

@media screen and (max-width: 768px) {
    .floating-cta {
        height: 50px !important;
    }
    
    .floating-cta a {
        padding: 15px 0 !important;
        font-size: 0.9rem !important;
        height: 50px !important;
    }
    
    .floating-cta i {
        font-size: 1.2rem !important;
    }
}

@media screen and (max-width: 480px) {
    .floating-cta {
        height: 45px !important;
    }
    
    .floating-cta a {
        padding: 12px 0 !important;
        height: 45px !important;
    }
    
    .floating-cta span {
        font-size: 0.8rem !important;
    }
    
    .floating-cta i {
        font-size: 1.1rem !important;
    }
    
    body {
        margin-bottom: 45px !important;
        padding-bottom: 0 !important;
    }
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .big-text {
        font-size: 1.4rem;
    }
    
    .big-button {
        font-size: 1.5rem;
    }
    
    .big-button i {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq {
        padding: 3rem 0 1.5rem;
    }
    
    .articles {
        padding: 1.5rem 0 3rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .call-box {
        padding: 1.2rem;
    }
    
    .big-button {
        font-size: 1.3rem;
        padding: 1rem;
    }
    
    .big-button i {
        font-size: 1.5rem;
    }
    
    /* Mobil görünümde butonlar arası mesafeyi azalt */
    .call-arrow {
        margin: 1rem 0 0.5rem;
    }
    
    .arrow-down {
        width: 40px;
        height: 40px;
        margin: 0.3rem 0;
    }
    
    .whatsapp-text {
        margin: 0.3rem 0;
        font-size: 1.2rem;
    }
    
    .whatsapp-box {
        margin-top: 0;
        margin-bottom: 1rem;
    }
    
    .service-hours {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    
    .service-grid,
    .features,
    .area-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .floating-text span {
        display: none;
    }
    
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.5rem;
    }
    
    .floating-cta .btn-call {
        font-size: 1rem;
        padding: 0.7rem 1rem;
    }
    
    .faq {
        padding: 2.5rem 0 1rem;
    }
    
    .articles {
        padding: 1rem 0 2.5rem;
    }
    
    section {
        padding: 2rem 0;
    }
}

/* Daha küçük mobil ekranlar için */
@media (max-width: 480px) {
    .big-text {
        font-size: 1.2rem;
        margin: 1rem 0;
    }
    
    .call-arrow {
        margin: 0.5rem 0 0.3rem;
    }
    
    .arrow-down {
        width: 30px;
        height: 30px;
        margin: 0.2rem 0;
    }
    
    .call-box {
        padding: 1rem;
        border-width: 3px;
    }
    
    .call-box h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .big-button {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    .faq {
        padding: 2rem 0 0.5rem;
    }
    
    .articles {
        padding: 0.5rem 0 2rem;
    }
    
    section {
        padding: 1.5rem 0;
    }
}

/* Sayfa Yükleme Optimizasyonu */
@media (prefers-reduced-motion: reduce) {
    *,
    ::before,
    ::after {
        animation-delay: 0s !important;
        animation-duration: 0s !important;
        transition-duration: 0s !important;
        scroll-behavior: auto !important;
    }
}

/* Content Visibility API - Performans İçin */
.services,
.areas,
.faq,
.articles,
footer {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* Mini Header */
.mini-header {
    background-color: #1a1a1a;
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mini-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
}

.service-badge i {
    color: #25d366;
}

.mini-contact a {
    color: white;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-weight: 600;
}

.mini-contact i {
    color: var(--primary-color);
}

.mini-contact a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .mini-header {
        padding: 5px 0;
        font-size: 0.8rem;
    }
    
    .service-badge {
        font-size: 0.75rem;
    }
}

/* Articles Section */
.articles {
    background-color: #f8f9fa;
    padding: 2rem 0 4rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.article-item {
    margin-bottom: 2.5rem;
}

.article-item h2 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    border: none;
}

.article-text {
    color: #555;
    line-height: 1.7;
    text-align: center;
}

.article-text p {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .article-item h2 {
        font-size: 1.4rem;
    }
}

/* Görseller için düzeltici */
.logo-image, .arrow-down {
    will-change: transform;
}

/* Layout yükseltmeleri */
.main-header,
.hero,
.services,
.areas,
.faq,
.articles,
footer,
.floating-cta {
    contain: layout style paint;
}

/* Footer Links */
.footer-links {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-links p {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.footer-link {
    display: inline-block;
    margin: 5px 10px;
    padding: 5px 10px;
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    background-color: rgba(230, 57, 70, 0.1);
}

.footer-link.active {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
}

@media (max-width: 576px) {
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-link {
        margin: 5px 0;
    }
}

/* Yeni Footer Stili */
.simple-footer {
    background: linear-gradient(to right, var(--secondary-color), #2a4374);
    padding: 25px 0;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 100%;
    bottom: 0;
    border-top: 3px solid var(--primary-color);
}

.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-nav .footer-link {
    color: #f1faee;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.footer-nav .footer-link:hover {
    color: #fff;
    background-color: rgba(230, 57, 70, 0.2);
    transform: translateY(-2px);
}

.footer-nav .footer-link.active {
    color: #fff;
    background-color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.simple-footer .copyright {
    color: #ddd;
    font-size: 14px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .footer-nav {
        gap: 15px;
        padding: 0 10px;
        margin-bottom: 10px;
    }
    
    .footer-nav .footer-link {
        font-size: 15px;
        padding: 6px 12px;
    }
    
    .simple-footer .copyright {
        font-size: 12px;
        margin-top: 10px;
        padding-top: 10px;
    }
}

@media (max-width: 576px) {
    .simple-footer {
        padding: 15px 0;
    }
    
    .footer-nav {
        gap: 10px;
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-nav .footer-link {
        font-size: 13px;
        padding: 5px 8px;
        white-space: nowrap;
    }
}

/* Floating CTA mobil uyum - footer içinde düzgün görünmesi için */
@media screen and (max-width: 992px) {
    body {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .floating-cta {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        z-index: 10 !important;
    }
} 