:root {
    --izokoc-primary: #FF3131;
    --izokoc-secondary: #1a237e;
    --izokoc-blue: #2962FF;
    --izokoc-dark: #0a0e27;
    --izokoc-dark-light: #1a1f3a;
    --izokoc-text-gray: #b8b9c1;
    --izokoc-border-color: rgba(255, 255, 255, 0.1);
}

/* Footer Wrapper */
.izkc-footer-wrapper {
    background: linear-gradient(135deg, var(--izokoc-dark) 0%, var(--izokoc-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.izkc-footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

/* Gradient Line */
.izkc-footer-gradient-line {
    height: 4px;
    background: linear-gradient(90deg,
    var(--izokoc-primary) 0%,
    var(--izokoc-blue) 50%,
    var(--izokoc-primary) 100%);
    box-shadow: 0 0 20px rgba(255, 49, 49, 0.5);
}

/* Content Area */
.izkc-footer-content {
    padding: 80px 0 60px;
    position: relative;
    z-index: 1;
}

/* Brand Section */
.izkc-footer-brand-section {
    padding-right: 20px;
}

.izkc-footer-logo-link {
    display: inline-block;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.izkc-footer-logo-link:hover {
    transform: translateY(-3px);
}

.izkc-footer-logo-img {
    max-width: 220px;
    height: auto;
    filter: brightness(1.1);
}

.izkc-footer-description {
    color: var(--izokoc-text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Contact Card */
.izkc-footer-contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--izokoc-border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.izkc-footer-contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--izokoc-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 49, 49, 0.2);
}

.izkc-footer-contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--izokoc-primary), var(--izokoc-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.izkc-footer-contact-icon i {
    color: #fff;
    font-size: 20px;
}

.izkc-footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.izkc-footer-contact-label {
    color: var(--izokoc-text-gray);
    font-size: 13px;
    font-weight: 500;
}

.izkc-footer-contact-phone {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Section Titles */
.izkc-footer-section-title {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.izkc-footer-title-line {
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--izokoc-primary), var(--izokoc-blue));
    border-radius: 2px;
}

/* Footer Menu Styles - Footer için özel */
.izkc-footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.izkc-footer-menu-item {
    margin-bottom: 12px;
}

.izkc-footer-menu-link {
    color: var(--izokoc-text-gray);
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.izkc-footer-menu-link::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--izokoc-primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.izkc-footer-menu-link:hover {
    color: #fff;
    padding-left: 10px;
}

.izkc-footer-menu-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Active state */
.izkc-footer-menu-item.izkc-active .izkc-footer-menu-link {
    color: var(--izokoc-primary);
    font-weight: 600;
}

/* Submenu styles - footer'da alt menü varsa */
.izkc-footer-submenu {
    list-style: none;
    padding-left: 20px;
    margin-top: 8px;
}

.izkc-footer-menu-item.izkc-has-submenu > .izkc-footer-menu-link {
    font-weight: 600;
}

.izkc-footer-menu-notice {
    color: var(--izokoc-text-gray);
    font-size: 12px;
    opacity: 0.7;
}

/* Newsletter Form */
.izkc-newsletter-form {
    margin-bottom: 25px;
}

.izkc-newsletter-input-group {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--izokoc-border-color);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.izkc-newsletter-input-group:focus-within {
    border-color: var(--izokoc-primary);
    box-shadow: 0 0 20px rgba(255, 49, 49, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.izkc-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 20px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.izkc-newsletter-input::placeholder {
    color: var(--izokoc-text-gray);
}

.izkc-newsletter-button {
    background: linear-gradient(135deg, var(--izokoc-primary), var(--izokoc-blue));
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    margin: 2px;
}

.izkc-newsletter-button:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 5px 20px rgba(255, 49, 49, 0.4);
}

.izkc-newsletter-button i {
    color: #fff;
    font-size: 16px;
}

/* Newsletter Alerts */
.izkc-newsletter-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.izkc-newsletter-alert--success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #4caf50;
}

.izkc-newsletter-alert--error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.4);
    color: #f44336;
}

/* Social Links */
.izkc-footer-social-section {
    margin-top: 30px;
}

.izkc-footer-social-title {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.izkc-social-links-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.izkc-social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--izokoc-border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--izokoc-text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.izkc-social-link:hover {
    background: linear-gradient(135deg, var(--izokoc-primary), var(--izokoc-blue));
    border-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 49, 49, 0.3);
}

.izkc-social-link i {
    font-size: 16px;
}

/* Footer Bottom */
.izkc-footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--izokoc-border-color);
    padding: 25px 0;
    position: relative;
    z-index: 1;
}

.izkc-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.izkc-copyright-text {
    color: var(--izokoc-text-gray);
    font-size: 14px;
}

.izkc-copyright-logo-wrapper {
    display: flex;
    align-items: center;
}

.izkc-copyright-logo {
    max-height: 60px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.izkc-copyright-logo:hover {
    opacity: 1;
}

/* Back to Top Button */
.izkc-scroll-top-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--izokoc-primary), var(--izokoc-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(255, 49, 49, 0.3);
}

.izkc-scroll-top-button.active {
    opacity: 1;
    visibility: visible;
}

.izkc-scroll-top-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 49, 49, 0.5);
}

.izkc-scroll-top-button i {
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .izkc-footer-content {
        padding: 60px 0 40px;
    }

    .izkc-footer-brand-section {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .izkc-footer-section-title {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .izkc-footer-content {
        padding: 40px 0 30px;
    }

    .izkc-footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .izkc-copyright-text {
        font-size: 13px;
    }

    .izkc-scroll-top-button {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }

    .izkc-social-links-grid {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .izkc-footer-logo-img {
        max-width: 250px;
    }

    .izkc-footer-contact-card {
        flex-direction: column;
        text-align: center;
    }

    .izkc-newsletter-input {
        font-size: 13px;
        padding: 12px 15px;
    }

    .izkc-newsletter-button {
        width: 45px;
        height: 45px;
    }
}

/* ========================================
   Newsletter Form Styles
======================================== */

/* Newsletter Alert Stilleri */
.izkc-newsletter-alert {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideInDown 0.3s ease-out;
}

.izkc-newsletter-alert--success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-left: 4px solid #047857;
}

.izkc-newsletter-alert--error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border-left: 4px solid #b91c1c;
}

.izkc-newsletter-alert i {
    font-size: 16px;
    flex-shrink: 0;
}

/* Newsletter Form Container */
.izkc-newsletter-form {
    margin-bottom: 20px;
}

.izkc-newsletter-input-group {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.izkc-newsletter-input-group:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.izkc-newsletter-input-group:focus-within {
    border-color: var(--izokoc-primary, #FF3131);
    box-shadow: 0 0 0 4px rgba(255, 49, 49, 0.2);
}

.izkc-newsletter-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 20px;
    color: white;
    font-size: 15px;
    outline: none;
    font-weight: 500;
}

.izkc-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.izkc-newsletter-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.izkc-newsletter-button {
    background: linear-gradient(135deg, var(--izokoc-primary, #FF3131), var(--izokoc-blue, #2962FF));
    border: none;
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.izkc-newsletter-button:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--izokoc-blue, #2962FF), var(--izokoc-primary, #FF3131));
    transform: scale(1.05);
}

.izkc-newsletter-button:active {
    transform: scale(0.98);
}

.izkc-newsletter-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.izkc-newsletter-button i {
    font-size: 16px;
}

/* Loading Animation */
.izkc-newsletter-button .fa-spinner {
    animation: spin 1s linear infinite;
}

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

/* Alert Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Responsive Newsletter Form */
@media (max-width: 768px) {
    .izkc-newsletter-input-group {
        flex-direction: column;
        border-radius: 12px;
    }

    .izkc-newsletter-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .izkc-newsletter-button {
        padding: 12px;
        border-radius: 0 0 10px 10px;
        font-size: 14px;
    }

    .izkc-newsletter-alert {
        font-size: 13px;
        padding: 10px 12px;
    }
}

/* Dark Mode Newsletter Form */
@media (prefers-color-scheme: dark) {
    .izkc-newsletter-input-group {
        background: rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.1);
    }

    .izkc-newsletter-input {
        color: #f1f5f9;
    }

    .izkc-newsletter-input::placeholder {
        color: rgba(241, 245, 249, 0.6);
    }
}

/* Honeypot Field (Gizli) */
input[name="website"] {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Newsletter Success State */
.izkc-newsletter-form.success .izkc-newsletter-input-group {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

/* Newsletter Error State */
.izkc-newsletter-form.error .izkc-newsletter-input-group {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Newsletter Loading State */
.izkc-newsletter-form.loading .izkc-newsletter-input-group {
    opacity: 0.8;
    pointer-events: none;
}

/* Newsletter Form Focus Ring Özelleştirmesi */
.izkc-newsletter-input:focus {
    box-shadow: none;
    outline: none;
}

/* Newsletter Subscription Status Indicator */
.izkc-newsletter-status {
    font-size: 12px;
    margin-top: 8px;
    opacity: 0.8;
}

.izkc-newsletter-status.pending {
    color: #f59e0b;
}

.izkc-newsletter-status.confirmed {
    color: #10b981;
}

.izkc-newsletter-status.unsubscribed {
    color: #6b7280;
}