/* ==================== MODERN FOOTER LAYOUTS ==================== */

/* ==================== 1. WAVE FOOTER (Dalgalı Gradyan) ==================== */
.footer-wave {
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
}

/* Wave Dark Mode */
.footer-wave.footer-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: #e2e8f0;
}

.footer-wave.footer-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath fill='%2306b6d4' fill-opacity='0.15' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80L1200,75L1200,0L1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") no-repeat center top;
    background-size: cover;
    animation: wave 15s ease-in-out infinite;
}

.footer-wave.footer-dark .footer-heading {
    color: #06b6d4;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.footer-wave.footer-dark .footer-links {
    list-style: none;
    padding: 0;
}

.footer-wave.footer-dark .footer-links li {
    margin-bottom: 12px;
}

.footer-wave.footer-dark .footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-wave.footer-dark .footer-links a:hover {
    color: #06b6d4;
    transform: translateX(5px);
}

.footer-wave.footer-dark .footer-links a::before {
    content: '→';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-wave.footer-dark .footer-links a:hover::before {
    opacity: 1;
}

/* Wave Light Mode */
.footer-wave.footer-light {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #bae6fd 100%);
    color: #0f172a;
}

.footer-wave.footer-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath fill='%2306b6d4' fill-opacity='0.3' d='M0,64L48,69.3C96,75,192,85,288,80C384,75,480,53,576,48C672,43,768,53,864,64C960,75,1056,85,1152,80L1200,75L1200,0L1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") no-repeat center top;
    background-size: cover;
    animation: wave 15s ease-in-out infinite;
}

.footer-wave.footer-light .footer-heading {
    color: #0891b2;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-wave.footer-light .footer-links a {
    color: #475569;
}

.footer-wave.footer-light .footer-links a:hover {
    color: #0891b2;
}

/* Social Links - Wave */
.footer-wave .social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-wave .social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.footer-wave.footer-dark .social-link {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.footer-wave.footer-dark .social-link:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.footer-wave.footer-light .social-link {
    background: rgba(8, 145, 178, 0.1);
    color: #0891b2;
    border: 1px solid rgba(8, 145, 178, 0.3);
}

.footer-wave.footer-light .social-link:hover {
    background: rgba(8, 145, 178, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.2);
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-25px); }
}

/* ==================== 2. GRID FOOTER (Ortalı Logo + Menüler) ==================== */
.footer-grid {
    padding: 80px 0 40px;
    position: relative;
    text-align: center;
}

/* Grid Dark Mode */
.footer-grid.footer-dark {
    background: #000000;
    color: #ffffff;
}

.footer-grid.footer-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Logo Section */
.footer-grid .footer-grid-logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.footer-grid .footer-grid-logo img {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-grid.footer-light .footer-grid-logo img {
    filter: none;
}

/* Menu Section */
.footer-grid .footer-grid-menus {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-grid .footer-menu-group {
    text-align: center;
    min-width: 150px;
}

.footer-grid.footer-dark .footer-heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-grid.footer-light .footer-heading {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.footer-grid .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-grid.footer-dark .footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-grid.footer-dark .footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-grid.footer-light .footer-links a {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-block;
}

.footer-grid.footer-light .footer-links a:hover {
    color: #000000;
    transform: translateX(5px);
}

/* Company Info Section */
.footer-grid .footer-grid-info {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.footer-grid.footer-light .footer-grid-info {
    border-top-color: rgba(0, 0, 0, 0.1);
}

.footer-grid .footer-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.footer-grid .footer-info-item svg {
    flex-shrink: 0;
}

.footer-grid.footer-dark .footer-info-item {
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid.footer-light .footer-info-item {
    color: rgba(0, 0, 0, 0.7);
}

.footer-grid .footer-info-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-grid.footer-dark .footer-info-item a:hover {
    color: #ffffff;
}

.footer-grid.footer-light .footer-info-item a:hover {
    color: #000000;
}

/* Social Links - Grid */
.footer-grid .social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.footer-grid .social-link {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.footer-grid.footer-dark .social-link {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-grid.footer-dark .social-link:hover {
    background: #ffffff;
    color: #000000;
    transform: rotate(360deg) scale(1.1);
}

.footer-grid.footer-light .social-link {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-grid.footer-light .social-link:hover {
    background: #000000;
    color: #ffffff;
    transform: rotate(360deg) scale(1.1);
}

/* Grid Light Mode */
.footer-grid.footer-light {
    background: #fafafa;
    color: #000000;
}

.footer-grid.footer-light::before {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* ==================== 3. LUXURY FOOTER (Minimal Asimetrik) ==================== */
.footer-luxury {
    padding: 80px 0 50px;
    position: relative;
    overflow: hidden;
    font-size: 13px;
}

/* Luxury Main Content */
.footer-luxury .luxury-main-content {
    position: relative;
    z-index: 1;
}

/* ========== 1. Sütun - Firma Bilgileri ========== */
.footer-luxury .luxury-company-info {
    padding: 0;
}

.footer-luxury .luxury-footer-logo {
    margin-bottom: 16px;
}

.footer-luxury .luxury-footer-logo img {
    max-width: 160px;
    height: auto;
}

.footer-luxury.footer-dark .luxury-footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-luxury.footer-light .luxury-footer-logo img {
    filter: none;
}

.footer-luxury .luxury-company-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-luxury.footer-dark .luxury-company-name {
    color: #fff;
}

.footer-luxury.footer-light .luxury-company-name {
    color: #171717;
}

/* İletişim Listesi */
.footer-luxury .luxury-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-luxury .luxury-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-luxury .luxury-contact-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-luxury.footer-dark .luxury-contact-list li {
    color: rgba(255, 255, 255, 0.75);
}

.footer-luxury.footer-dark .luxury-contact-list li svg {
    fill: rgba(255, 255, 255, 0.6);
}

.footer-luxury.footer-dark .luxury-contact-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-luxury.footer-light .luxury-contact-list li {
    color: rgba(23, 23, 23, 0.7);
}

.footer-luxury.footer-light .luxury-contact-list li svg {
    fill: rgba(23, 23, 23, 0.5);
}

.footer-luxury.footer-light .luxury-contact-list a {
    color: rgba(23, 23, 23, 0.8);
}

.footer-luxury.footer-light .luxury-contact-list a:hover {
    color: #171717;
}

/* Sosyal Medya İkonları */
.footer-luxury .luxury-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-luxury .luxury-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-luxury.footer-dark .luxury-social-links a {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.footer-luxury.footer-dark .luxury-social-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-2px);
}

.footer-luxury.footer-light .luxury-social-links a {
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.6);
}

.footer-luxury.footer-light .luxury-social-links a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #171717;
    transform: translateY(-2px);
}

.footer-luxury .luxury-social-links a svg {
    fill: currentColor;
}

/* ========== Orta Sütunlar - Menü Linkleri ========== */
.footer-luxury .footer-heading {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-luxury.footer-dark .footer-heading {
    color: #fff;
}

.footer-luxury.footer-light .footer-heading {
    color: #171717;
}

.footer-luxury .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-luxury .footer-links a {
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-luxury.footer-dark .footer-links a {
    color: rgba(255, 255, 255, 0.75);
}

.footer-luxury.footer-dark .footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-luxury.footer-light .footer-links a {
    color: rgba(23, 23, 23, 0.65);
}

.footer-luxury.footer-light .footer-links a:hover {
    color: #171717;
    padding-left: 5px;
}

/* ========== 5. Sütun - Destek Kutusu ========== */
.footer-luxury .luxury-support-box {
    text-align: center;
    padding: 24px;
    border-radius: 12px;
}

.footer-luxury.footer-dark .luxury-support-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-luxury.footer-light .luxury-support-box {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-luxury .luxury-support-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #f97316;
}

.footer-luxury .luxury-support-btn {
    display: block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.footer-luxury .luxury-support-btn-outline {
    border: 1px solid currentColor;
    background: transparent;
}

.footer-luxury.footer-dark .luxury-support-btn-outline {
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-luxury.footer-dark .luxury-support-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.footer-luxury.footer-light .luxury-support-btn-outline {
    color: #333;
    border-color: #ccc;
}

.footer-luxury.footer-light .luxury-support-btn-outline:hover {
    background: #f5f5f5;
}

.footer-luxury .luxury-support-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    font-size: 12px;
}

.footer-luxury .luxury-support-divider::before,
.footer-luxury .luxury-support-divider::after {
    content: '';
    flex: 1;
    height: 1px;
}

.footer-luxury.footer-dark .luxury-support-divider {
    color: rgba(255, 255, 255, 0.5);
}

.footer-luxury.footer-dark .luxury-support-divider::before,
.footer-luxury.footer-dark .luxury-support-divider::after {
    background: rgba(255, 255, 255, 0.15);
}

.footer-luxury.footer-light .luxury-support-divider {
    color: rgba(0, 0, 0, 0.4);
}

.footer-luxury.footer-light .luxury-support-divider::before,
.footer-luxury.footer-light .luxury-support-divider::after {
    background: rgba(0, 0, 0, 0.1);
}

.footer-luxury .luxury-support-label {
    font-size: 12px;
    margin-bottom: 6px;
}

.footer-luxury.footer-dark .luxury-support-label {
    color: rgba(255, 255, 255, 0.6);
}

.footer-luxury.footer-light .luxury-support-label {
    color: rgba(0, 0, 0, 0.5);
}

.footer-luxury .luxury-support-phone {
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    text-decoration: none;
}

.footer-luxury.footer-dark .luxury-support-phone {
    color: #f97316;
}

.footer-luxury.footer-light .luxury-support-phone {
    color: #f97316;
}

.footer-luxury .luxury-whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.footer-luxury.footer-dark .luxury-whatsapp-link {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(37, 211, 102, 0.15);
}

.footer-luxury.footer-dark .luxury-whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.25);
}

.footer-luxury.footer-light .luxury-whatsapp-link {
    color: #333;
    background: rgba(37, 211, 102, 0.1);
}

.footer-luxury.footer-light .luxury-whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.2);
}

.footer-luxury .luxury-contact-link {
    display: inline-block;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-luxury.footer-dark .luxury-contact-link {
    color: rgba(255, 255, 255, 0.7);
}

.footer-luxury.footer-dark .luxury-contact-link:hover {
    color: #fff;
}

.footer-luxury.footer-light .luxury-contact-link {
    color: rgba(0, 0, 0, 0.6);
}

.footer-luxury.footer-light .luxury-contact-link:hover {
    color: #000;
}

/* Luxury Dark Mode */
.footer-luxury.footer-dark {
    background: #000000;
    color: #ffffff;
}

.footer-luxury.footer-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-luxury.footer-dark::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-luxury.footer-dark .luxury-divider {
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(168, 85, 247, 0.5) 25%, 
        rgba(59, 130, 246, 0.5) 75%, 
        transparent 100%);
    margin: 60px 0;
}

.footer-luxury.footer-dark .footer-heading {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
}

.footer-luxury.footer-dark .footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #a855f7, #3b82f6);
}

.footer-luxury.footer-dark .footer-links {
    list-style: none;
    padding: 0;
}

.footer-luxury.footer-dark .footer-links li {
    margin-bottom: 16px;
}

.footer-luxury.footer-dark .footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-luxury.footer-dark .footer-links a:hover {
    color: #ffffff;
    letter-spacing: 1px;
}

/* Contact info text colors */
.footer-luxury.footer-dark .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-luxury.footer-dark .footer-contact li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.footer-luxury.footer-dark .footer-contact a {
    color: rgba(255, 255, 255, 0.9);
}

.footer-luxury.footer-dark .footer-contact a:hover {
    color: #ffffff;
}

.footer-luxury.footer-dark p {
    color: rgba(255, 255, 255, 0.9);
}

/* Luxury Light Mode */
.footer-luxury.footer-light {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    color: #171717;
}

.footer-luxury.footer-light::before {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
}

.footer-luxury.footer-light::after {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
}

.footer-luxury.footer-light .luxury-divider {
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(168, 85, 247, 0.3) 25%, 
        rgba(59, 130, 246, 0.3) 75%, 
        transparent 100%);
}

.footer-luxury.footer-light .footer-heading {
    color: #171717;
}

.footer-luxury.footer-light .footer-links a {
    color: rgba(23, 23, 23, 0.6);
}

.footer-luxury.footer-light .footer-links a:hover {
    color: #171717;
}

/* Social Links - Luxury */
.footer-luxury .social-links {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.footer-luxury .social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-luxury.footer-dark .social-link {
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-luxury.footer-dark .social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-luxury.footer-dark .social-link:hover {
    transform: translateY(-4px);
    color: #ffffff;
    border-color: transparent;
}

.footer-luxury.footer-dark .social-link:hover::before {
    opacity: 1;
}

.footer-luxury.footer-dark .social-link svg {
    position: relative;
    z-index: 1;
}

.footer-luxury.footer-light .social-link {
    background: rgba(0, 0, 0, 0.03);
    color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-luxury.footer-light .social-link:hover {
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    color: #ffffff;
    border-color: transparent;
}

/* ==================== MOBILE USERBOX PREMIUM ==================== */
.mobile-userbox-premium {
    background: transparent;
    color: #111827;
    border-radius: 8px;
    box-shadow: none;
    padding: 0 0 0 0;
    margin: 5px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    border: none;
}
.mobile-userbox-premium .userbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 4px;
    padding: 8px 12px;
}
.mobile-userbox-premium .userbox-info {
    flex: 1;
    min-width: 0;
}
.mobile-userbox-premium .userbox-name {
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 1.2;
    color: #111827;
}
.mobile-userbox-premium .userbox-badge {
    background: #f3f4f6;
    color: #3b82f6;
    font-size: 11px;
    font-weight: 700;
    border-radius: 7px;
    padding: 1px 8px;
    margin-left: 2px;
    letter-spacing: 0.2px;
    box-shadow: none;
    display: inline-block;
}
.mobile-userbox-premium .userbox-email {
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px;
    word-break: break-all;
}
.mobile-userbox-premium .userbox-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
}
.mobile-userbox-premium .userbox-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    border-radius: 0;
    padding: 12px 20px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-userbox-premium .userbox-link i {
    font-size: 15px;
    opacity: 0.7;
}
.mobile-userbox-premium .userbox-link.logout {
    color: #dc2626;
    background: transparent;
}
.mobile-userbox-premium .userbox-link:hover {
    background: #f8f8f8;
    color: #000;
}
.mobile-userbox-premium .userbox-links-horizontal {
    flex-direction: row;
    gap: 8px;
    padding: 0 12px;
    margin-top: 4px;
}
.mobile-userbox-premium .userbox-links-horizontal .userbox-link {
    flex: 1;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 8px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 12px;
}
.mobile-userbox-premium .userbox-links-horizontal .userbox-link:hover {
    background: #e5e7eb;
    color: #111827;
}
.mobile-userbox-premium .userbox-links-horizontal .userbox-link.logout {
    background: #fef2f2;
    color: #dc2626;
}
.mobile-userbox-premium .userbox-links-horizontal .userbox-link.logout:hover {
    background: #fee2e2;
    color: #dc2626;
}
.mobile-userbox-premium.mobile-userbox-guest .userbox-links {
    flex-direction: row;
    gap: 8px;
    padding: 0 12px;
    margin-top: 4px;
}
.mobile-userbox-premium.mobile-userbox-guest .userbox-link {
    flex: 1;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 12px;
    /* Renkler ve border-radius artık theme-dynamic-inline.php'de tanımlanıyor */
}
@media (max-width: 600px) {
    .mobile-userbox-premium {
        padding: 0;
        border-radius: 6px;
    }
    .mobile-userbox-premium .userbox-name {
        font-size: 14px;
    }
    .mobile-userbox-premium .userbox-link {
        font-size: 14px;
        padding: 10px 16px;
    }
    .mobile-userbox-premium.mobile-userbox-guest .userbox-link {
        font-size: 13px;
        padding: 9px 10px;
    }
}

/* Newsletter Input - All Layouts */
.footer-newsletter {
    margin-top: 24px;
}

.footer-newsletter input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: #3b82f6;
    background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter button {
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

/* Copyright Section - All Layouts */
.footer-copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

.footer-light .footer-copyright {
    border-top-color: rgba(0, 0, 0, 0.1);
}

/* Luxury footer copyright */
.footer-luxury .footer-copyright {
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-wave,
    .footer-grid,
    .footer-luxury {
        padding: 60px 0 30px;
    }
    
    .footer-grid .footer-grid-menus {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-grid .footer-grid-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-grid .footer-info-item {
        justify-content: center;
    }
    
    .footer-luxury .luxury-divider {
        margin: 40px 0;
    }
    
    /* Luxury Footer Mobile */
    .footer-luxury .luxury-company-info {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-luxury .luxury-footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .footer-luxury .luxury-contact-list li {
        justify-content: center;
    }
    
    .footer-luxury .luxury-social-links {
        justify-content: center;
    }
    
    .footer-luxury .col-lg-2 {
        text-align: center;
    }
    
    .footer-luxury .footer-heading {
        text-align: center;
    }
    
    .footer-luxury .footer-links {
        text-align: center;
    }
    
    .footer-luxury .luxury-support-box {
        max-width: 100%;
        margin: 30px auto 0;
    }
    
    .footer-luxury .luxury-support-phone {
        font-size: 18px;
    }
}
