:root {
    --bg-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --container-bg: rgba(30, 39, 46, 0.95);
    --section-bg: #2c3e50;
    --text-color: #ecf0f1;
    --text-secondary: #bdc3c7;
    --text-muted: #95a5a6;
    --border-color: #34495e;
    --table-header-bg: #34495e;
    --hover-bg: rgba(52, 73, 94, 0.3);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --shadow-light: rgba(0, 0, 0, 0.2);
    --whatsapp-color: #25D366;
    --whatsapp-hover: #20BA5A;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-gradient);
    min-height: 100vh;
    color: var(--text-color);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--container-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background: var(--section-bg);
}

.nav-container {
    width: 100%;
    padding: 10px 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.logo {
    text-decoration: none;
    flex-shrink: 0;
    z-index: 1;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 150px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(236, 240, 241, 0.65);
    text-decoration: none;
    font-size: 0.78em;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 7px 13px;
    border-radius: 7px;
    border: 1px solid transparent;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-link i {
    font-size: 0.95em;
}

.nav-link:hover {
    color: #ecf0f1;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    padding: 120px 20px 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.btn {
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 80px 20px;
    background: var(--section-bg);
}

.section:nth-child(even) {
    background: var(--container-bg);
}

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

.section-title {
    text-align: center;
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 50px;
    font-size: 1.05em;
    font-weight: 500;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.brand-section {
    background: var(--section-bg);
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    overflow: visible;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease;
}

.brand-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.brand-header {
    padding: 15px;
    color: white;
    text-align: center;
    font-size: 1.3em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 15px 15px 0 0;
    overflow: hidden;
}

.product-table-wrapper {
    width: 100%;
}

/* Global sabit tablo başlığı */
.mob-brand {
    display: none;
}

.products-table-header {
    display: flex;
    background: var(--table-header-bg);
    border-top: 2px solid #000;
}

.pth-col {
    padding: 9px;
    font-weight: 600;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Masaüstü sütun genişlikleri — tablodaki nth-child ile aynı */
.pth-marka   { width: 16%; }
.pth-model   { width: 26%; }
.pth-stok    { width: 22%; text-align: left; white-space: normal; word-break: break-word; }
.pth-fiyat   { width: 16%; }
.pth-iletisim{ width: 20%; }

/* Table Styles */
.product-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.product-table th:nth-child(1),
.product-table td:nth-child(1) { width: 16%; }

.product-table th:nth-child(2),
.product-table td:nth-child(2) { width: 26%; }

.product-table th:nth-child(3),
.product-table td:nth-child(3) { width: 22%; text-align: left; white-space: normal; word-break: break-word; }

.product-table th:nth-child(4),
.product-table td:nth-child(4) { width: 16%; }

.product-table th:nth-child(5),
.product-table td:nth-child(5) { width: 20%; }

.product-table th,
.product-table td {
    padding: 9px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-table th {
    background: var(--table-header-bg);
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 2px solid #000;
}

.product-table tr:hover {
    background: var(--hover-bg);
}

.product-btn {
    background: none;
    border: none;
    color: #74b9ff;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.product-btn:hover {
    color: #a29bfe;
    transform: scale(1.02);
}

.price {
    font-weight: 600;
    color: #74b9ff;
    text-align: center;
}

.ask-price {
    color: #e74c3c;
    font-style: italic;
}

/* WhatsApp Button */
.whatsapp-btn {
    background: var(--whatsapp-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px 15px;
    border-radius: 20px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    gap: 5px;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    background: var(--whatsapp-hover);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn svg {
    width: 16px;
    height: 16px;
    fill: white;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    animation: fadeInLeft 1s ease;
}

.about-image {
    animation: fadeInRight 1s ease;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5em;
    flex-shrink: 0;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    animation: fadeInLeft 1s ease;
}

.contact-form {
    animation: fadeInRight 1s ease;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3em;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--section-bg);
    color: var(--text-color);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Note */
.footer-note {
    background: linear-gradient(135deg, #d63031 0%, #74b9ff 100%);
    color: white;
    padding: 15px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1em;
    margin: 30px 0;
    border-radius: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 10px rgba(116, 185, 255, 0.3);
}

/* Exchange Rate */
.exchange-rate {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    text-align: center;
    font-weight: 500;
    font-size: 0.9em;
    margin: 20px 0;
    border-radius: 10px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--section-bg);
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px var(--shadow-color);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: var(--bg-gradient);
    color: white;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.4em;
    font-weight: 600;
    margin: 0;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px;
    color: var(--text-color);
    max-height: 60vh;
    overflow-y: auto;
}

.product-details {
    display: grid;
    gap: 15px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: var(--table-header-bg);
    border-radius: 8px;
}

.detail-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.detail-value {
    color: var(--text-color);
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-img {
        height: 110px;
    }

    .nav-container {
        padding: 8px 15px;
        justify-content: center;
        align-items: center;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 126px;
        transform: none;
        flex-direction: column;
        background: var(--section-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow-color);
        padding: 20px 0;
        gap: 4px;
    }

    .nav-menu.active {
        left: 0;
        transform: none;
    }

    .nav-link {
        justify-content: center;
        width: 80%;
        margin: 0 auto;
        white-space: nowrap;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.1em;
    }

    .section {
        padding: 40px 4px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 0 2px;
    }

    /* Mobil: Marka gizle, 4 sutun */
    .pth-marka    { display: none; }
    .pth-model    { width: 36%; }
    .pth-stok     { width: 26%; }
    .pth-fiyat    { width: 20%; }
    .pth-iletisim { width: 18%; text-align: center; }

    .mob-brand {
        display: block;
        font-size: 0.82em;
        color: rgba(255,255,255,0.5);
        font-weight: 500;
        margin-bottom: 1px;
    }

    .products-table-header {
        max-width: 100%;
    }

    .pth-col {
        padding: 6px 4px;
        font-size: 0.72em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand-section {
        border-radius: 10px;
    }

    .product-table-wrapper {
        width: 100%;
    }

    .product-table {
        width: 100%;
        table-layout: fixed;
    }

    /* Mobil: Marka gizle, 4 sutun tam ekran */
    .product-table th:nth-child(1),
    .product-table td:nth-child(1) { display: none; }

    .product-table th:nth-child(2),
    .product-table td:nth-child(2) { width: 36%; }

    .product-table th:nth-child(3),
    .product-table td:nth-child(3) { width: 26%; }

    .product-table th:nth-child(4),
    .product-table td:nth-child(4) { width: 20%; }

    .product-table th:nth-child(5),
    .product-table td:nth-child(5) { width: 18%; }

    .product-table th,
    .product-table td {
        padding: 7px 4px;
        font-size: 0.72em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
    }

    .product-table .td-model {
        white-space: normal;
        line-height: 1.3;
    }

    .product-table td:nth-child(3) {
        white-space: normal;
        text-overflow: clip;
        word-break: break-word;
        text-align: left;
        line-height: 1.3;
    }

    .pth-stok {
        white-space: normal;
        text-align: left;
    }

    .whatsapp-btn {
        padding: 5px 4px;
        width: 100%;
        justify-content: center;
        border-radius: 10px;
        font-size: 0.9em;
    }

    .whatsapp-btn svg {
        width: 13px;
        height: 13px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Loading Spinner */
.spinner {
    border: 3px solid var(--border-color);
    border-top: 3px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-gradient);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
    border: none;
    font-size: 1.5em;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px var(--shadow-color);
}

/* FAQ Section */
.faq-section {
    background: var(--container-bg);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: var(--section-bg);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.open {
    border-color: rgba(116, 185, 255, 0.4);
    box-shadow: 0 4px 16px rgba(116, 185, 255, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    color: var(--text-color);
    font-size: 0.97em;
    font-weight: 600;
    text-align: left;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: var(--hover-bg);
}

.faq-question span {
    flex: 1;
    line-height: 1.4;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 0.85em;
    color: #74b9ff;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 20px 18px;
    color: var(--text-secondary);
    font-size: 0.92em;
    line-height: 1.7;
    border-top: 1px solid var(--border-color);
    padding-top: 14px;
}

@media (max-width: 768px) {
    .faq-list {
        max-width: 100%;
    }
    .faq-question {
        padding: 13px 14px;
        font-size: 0.9em;
    }
    .faq-answer-inner {
        padding: 12px 14px 14px;
        font-size: 0.88em;
    }
}

/* Navbar döviz kuru */
.navbar-rate {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(30,40,60,0.95) 0%, rgba(20,30,50,0.98) 100%);
    border: 1px solid rgba(116,185,255,0.3);
    border-radius: 12px;
    padding: 7px 14px;
    white-space: nowrap;
    z-index: 1;
    box-shadow: 0 2px 12px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.rate-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7b731, #f0932b);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(247,183,49,0.35);
}

.rate-icon i {
    color: #fff;
    font-size: 0.82em;
    font-weight: 900;
}

.rate-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1;
}

.rate-label {
    font-size: 0.65em;
    font-weight: 600;
    color: rgba(116,185,255,0.7);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.rate-value {
    font-size: 0.95em;
    font-weight: 700;
    color: #f7b731;
    letter-spacing: 0.3px;
}

.navbar-rate i {
    font-size: 0.9em;
}

.about-rate {
    margin-left: 0;
    margin-right: 0;
    display: inline-flex;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .navbar-rate {
        display: flex;
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
        padding: 4px 8px;
        gap: 5px;
    }
    .rate-icon {
        width: 20px;
        height: 20px;
    }
    .rate-icon i { font-size: 0.65em; }
    .rate-label { display: none; }
    .rate-value { font-size: 0.78em; }
}

/* Footer section içerik stilleri */
.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-size: 0.95em;
    line-height: 1.6;
}

.footer-section .footer-links li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.95em;
}

.footer-section .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section .footer-links a:hover {
    color: white;
    padding-left: 0;
}

/* Footer iletisim listesi */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
    font-size: 0.92em;
}

.footer-contact li i {
    width: 16px;
    text-align: center;
    color: #74b9ff;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

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