﻿/* ========================================
   SOCIAL PLATFORMS CORE STYLES
   ======================================== */

:root {
    --facebook: #1877F2;
    --instagram: #E4405F;
    --linkedin: #0A66C2;
    --whatsapp: #25D366;
    --x: #000000;
    --telegram: #0088CC;
    --light: #f8f9fa;
    --dark: #212529;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container, main {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}

/* Main Container - نفس الأصلي */
.social-container,
.facebook-container,
.instagram-container,
.linkedin-container,
.whatsapp-container,
.telegram-container,
.x-container,
.analysis-container,
.automation-container,
.extraction-container,
.monitoring-container,
.global-container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    width: 100%;
    margin: 0;
}

/* Content */
.social-content,
.facebook-content,
.instagram-content,
.linkedin-content,
.whatsapp-content,
.telegram-content,
.x-content,
.analysis-content,
.automation-content,
.extraction-content,
.monitoring-content,
.global-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

/* Headers - نفس الأصلي */
.social-header,
.facebook-header,
.instagram-header,
.linkedin-header,
.whatsapp-header,
.telegram-header,
.x-header,
.analysis-header,
.automation-header,
.extraction-header,
.monitoring-header,
.global-header {
    margin-bottom: 60px;
}

    .social-header h1,
    .facebook-header h1,
    .instagram-header h1,
    .linkedin-header h1,
    .whatsapp-header h1,
    .telegram-header h1,
    .x-header h1,
    .analysis-header h1,
    .automation-header h1,
    .extraction-header h1,
    .monitoring-header h1,
    .global-header h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        background: linear-gradient(to right, #E4405F, #1877F2, #25D366, #000000);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

.social-subtitle,
.facebook-subtitle,
.instagram-subtitle,
.linkedin-subtitle,
.whatsapp-subtitle,
.telegram-subtitle,
.x-subtitle,
.analysis-subtitle,
.automation-subtitle,
.extraction-subtitle,
.monitoring-subtitle,
.global-subtitle {
    font-size: 1.3rem;
    color: #adb5bd;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Icons */
.social-logo,
.facebook-logo,
.instagram-logo,
.linkedin-logo,
.whatsapp-logo,
.telegram-logo,
.x-logo,
.analysis-icon,
.automation-icon,
.extraction-icon,
.monitoring-icon,
.global-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: inline-block;
}

/* Grid Layout - 3 cards per row - نفس الأصلي */
.tools-grid,
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 50px;
}

/* Card Base - نفس الأصلي */
.tool-card,
.platform-card,
.analysis-card,
.automation-card,
.extraction-card,
.monitoring-card,
.global-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px 35px;
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 420px;
}

    .tool-card::before,
    .platform-card::before,
    .analysis-card::before,
    .automation-card::before,
    .extraction-card::before,
    .monitoring-card::before,
    .global-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
    }

    .tool-card:hover,
    .platform-card:hover,
    .analysis-card:hover,
    .automation-card:hover,
    .extraction-card:hover,
    .monitoring-card:hover,
    .global-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    }

/* Card Icon - نفس الأصلي */
.tool-icon,
.platform-icon {
    font-size: 4.5rem;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.15);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.tool-card:hover .tool-icon,
.platform-card:hover .platform-icon,
.analysis-card:hover .tool-icon,
.automation-card:hover .tool-icon,
.extraction-card:hover .tool-icon,
.monitoring-card:hover .tool-icon,
.global-card:hover .tool-icon {
    transform: scale(1.15);
    background: rgba(255, 255, 255, 0.2);
}

/* Card Text - نفس الأصلي */
.tool-card h3,
.platform-card h3,
.analysis-card h3,
.automation-card h3,
.extraction-card h3,
.monitoring-card h3,
.global-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.tool-card p,
.platform-card p,
.analysis-card p,
.automation-card p,
.extraction-card p,
.monitoring-card p,
.global-card p {
    color: #adb5bd;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.1rem;
    flex-grow: 1;
    text-align: center;
    display: flex;
    align-items: center;
}

/* Buttons - نفس الأصلي */
.social-btn,
.facebook-btn,
.instagram-btn,
.linkedin-btn,
.whatsapp-btn,
.telegram-btn,
.x-btn,
.analysis-btn,
.automation-btn,
.extraction-btn,
.monitoring-btn,
.global-btn,
.platform-btn {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    border: 2px solid;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    margin-top: auto;
    min-width: 160px;
    text-align: center;
}

    .social-btn:hover,
    .facebook-btn:hover,
    .instagram-btn:hover,
    .linkedin-btn:hover,
    .whatsapp-btn:hover,
    .telegram-btn:hover,
    .x-btn:hover,
    .analysis-btn:hover,
    .automation-btn:hover,
    .extraction-btn:hover,
    .monitoring-btn:hover,
    .global-btn:hover,
    .platform-btn:hover {
        background: inherit;
        color: white;
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        transform: translateY(-2px);
    }

/* Features List - نفس الأصلي */
.features-list {
    text-align: right;
    margin: 20px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(-5px);
    }

    .feature-item i {
        margin-left: 12px;
        font-size: 1.1rem;
        width: 24px;
        text-align: center;
    }

.feature-text {
    flex-grow: 1;
    text-align: right;
    font-size: 0.9rem;
}

/* Badges - نفس الأصلي */
.stats-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 10;
}

/* AI Badges */
.ai-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    color: white;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

    .ai-badge i {
        font-size: 0.7rem;
    }

/* Particles - نفس الأصلي */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

/* Back Button - نفس الأصلي */
.back-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

    .back-btn:hover {
        background: rgba(255, 255, 255, 0.25);
        text-decoration: none;
        color: white;
        transform: translateX(-5px);
    }

/* Card Animations - نفس الأصلي */
.tool-card,
.platform-card,
.analysis-card,
.automation-card,
.extraction-card,
.monitoring-card,
.global-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

    .tool-card:nth-child(1),
    .platform-card:nth-child(1),
    .analysis-card:nth-child(1),
    .automation-card:nth-child(1),
    .extraction-card:nth-child(1),
    .monitoring-card:nth-child(1),
    .global-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .tool-card:nth-child(2),
    .platform-card:nth-child(2),
    .analysis-card:nth-child(2),
    .automation-card:nth-child(2),
    .extraction-card:nth-child(2),
    .monitoring-card:nth-child(2),
    .global-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .tool-card:nth-child(3),
    .platform-card:nth-child(3),
    .analysis-card:nth-child(3),
    .automation-card:nth-child(3),
    .extraction-card:nth-child(3),
    .monitoring-card:nth-child(3),
    .global-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .tool-card:nth-child(4),
    .platform-card:nth-child(4),
    .analysis-card:nth-child(4),
    .automation-card:nth-child(4),
    .extraction-card:nth-child(4),
    .monitoring-card:nth-child(4),
    .global-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .tool-card:nth-child(5),
    .platform-card:nth-child(5),
    .analysis-card:nth-child(5),
    .automation-card:nth-child(5),
    .extraction-card:nth-child(5),
    .monitoring-card:nth-child(5),
    .global-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .tool-card:nth-child(6),
    .platform-card:nth-child(6),
    .analysis-card:nth-child(6),
    .automation-card:nth-child(6),
    .extraction-card:nth-child(6),
    .monitoring-card:nth-child(6),
    .global-card:nth-child(6) {
        animation-delay: 0.6s;
    }

    .tool-card:nth-child(7),
    .platform-card:nth-child(7) {
        animation-delay: 0.7s;
    }

    .tool-card:nth-child(8),
    .platform-card:nth-child(8) {
        animation-delay: 0.8s;
    }

    .tool-card:nth-child(9),
    .platform-card:nth-child(9) {
        animation-delay: 0.9s;
    }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header & Footer Fixes */
header, .navbar {
    margin-bottom: 0 !important;
}

footer {
    margin-top: 0 !important;
}

/* Responsive - نفس الأصلي */
@media (max-width: 1200px) {
    .tools-grid,
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .social-header h1,
    .facebook-header h1,
    .instagram-header h1,
    .linkedin-header h1,
    .whatsapp-header h1,
    .telegram-header h1,
    .x-header h1,
    .analysis-header h1,
    .automation-header h1,
    .extraction-header h1,
    .monitoring-header h1,
    .global-header h1 {
        font-size: 2.5rem;
    }

    .social-subtitle,
    .facebook-subtitle,
    .instagram-subtitle,
    .linkedin-subtitle,
    .whatsapp-subtitle,
    .telegram-subtitle,
    .x-subtitle,
    .analysis-subtitle,
    .automation-subtitle,
    .extraction-subtitle,
    .monitoring-subtitle,
    .global-subtitle {
        font-size: 1.1rem;
    }

    .tools-grid,
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tool-card,
    .platform-card,
    .analysis-card,
    .automation-card,
    .extraction-card,
    .monitoring-card,
    .global-card {
        padding: 40px 25px;
        min-height: 380px;
    }

    .tool-icon,
    .platform-icon {
        width: 100px;
        height: 100px;
        font-size: 3.5rem;
    }

    .tool-card h3,
    .platform-card h3,
    .analysis-card h3,
    .automation-card h3,
    .extraction-card h3,
    .monitoring-card h3,
    .global-card h3 {
        font-size: 1.6rem;
    }

    .tool-card p,
    .platform-card p,
    .analysis-card p,
    .automation-card p,
    .extraction-card p,
    .monitoring-card p,
    .global-card p {
        font-size: 1rem;
    }

    .social-container,
    .facebook-container,
    .instagram-container,
    .linkedin-container,
    .whatsapp-container,
    .telegram-container,
    .x-container,
    .analysis-container,
    .automation-container,
    .extraction-container,
    .monitoring-container,
    .global-container {
        padding: 40px 20px;
    }

    .back-btn {
        top: 20px;
        left: 20px;
        padding: 8px 18px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tool-card,
    .platform-card,
    .analysis-card,
    .automation-card,
    .extraction-card,
    .monitoring-card,
    .global-card {
        padding: 30px 20px;
        min-height: 350px;
    }

    .tool-icon,
    .platform-icon {
        width: 90px;
        height: 90px;
        font-size: 3rem;
    }

    .social-btn,
    .facebook-btn,
    .instagram-btn,
    .linkedin-btn,
    .whatsapp-btn,
    .telegram-btn,
    .x-btn,
    .analysis-btn,
    .automation-btn,
    .extraction-btn,
    .monitoring-btn,
    .global-btn,
    .platform-btn {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 140px;
    }

    .tool-card h3,
    .platform-card h3,
    .analysis-card h3,
    .automation-card h3,
    .extraction-card h3,
    .monitoring-card h3,
    .global-card h3 {
        font-size: 1.4rem;
    }
}

/* RTL Support */
[dir="rtl"] .feature-item {
    flex-direction: row-reverse;
    text-align: right;
}

    [dir="rtl"] .feature-item i {
        margin-left: 0;
        margin-right: 12px;
    }

[dir="rtl"] .back-btn {
    left: auto;
    right: 30px;
}

    [dir="rtl"] .back-btn:hover {
        transform: translateX(5px);
    }

[dir="rtl"] .stats-badge {
    right: auto;
    left: 15px;
}

[dir="rtl"] .ai-badge {
    left: auto;
    right: 15px;
}

/* Language Toggle */
.en-text {
    display: inline;
}

.ar-text {
    display: none;
}

[dir="rtl"] .en-text {
    display: none;
}

[dir="rtl"] .ar-text {
    display: inline;
}
/* ========================================
   MODERN FOOTER STYLES
   ======================================== */

.footer-modern {
    background: linear-gradient(135deg, #0a0a1a 0%, #0f0f2a 50%, #1a1a3e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 20px 20px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

    .footer-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #E1306C, #8B5CF6, #3B82F6, transparent);
        animation: footerGlow 4s ease-in-out infinite;
    }

@keyframes footerGlow {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ===== Footer Grid ===== */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* ===== RTL Support ===== */
[dir="rtl"] .footer-grid {
    direction: rtl;
}

[dir="rtl"] .footer-logo {
    direction: ltr; /* ✅ اسم المنصة يبقى بالاتجاه الصحيح */
}

[dir="rtl"] .footer-heading::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .footer-column:hover .footer-heading::after {
    width: 50px;
}

[dir="rtl"] .footer-links li a:hover {
    transform: translateX(-5px);
}

[dir="rtl"] .footer-links li a::before {
    content: '‹';
}

[dir="rtl"] .logo-badge {
    margin-left: 0;
    margin-right: 8px;
}

[dir="rtl"] .newsletter-btn {
    border-radius: 12px;
}

[dir="rtl"] .newsletter-form {
    direction: ltr; /* ✅ عشان الإيميل يكتب صح */
}

[dir="rtl"] .footer-social {
    direction: ltr; /* ✅ الأيقونات تفضل بالاتجاه الصحيح */
}

/* ===== Brand Column ===== */
.brand-column {
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 5px;
}

.logo-text {
    color: #ffffff;
    transition: all 0.3s ease;
}

.logo-text-x {
    color: #E1306C;
    transition: all 0.3s ease;
}

.footer-logo:hover .logo-text {
    color: #E1306C;
}

.footer-logo:hover .logo-text-x {
    color: #ffffff;
}

.logo-badge {
    background: linear-gradient(135deg, #E1306C, #8B5CF6);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    color: white;
    margin-left: 8px;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 0.5px;
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.footer-description {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

/* ===== Social Icons ===== */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

    .social-icon:hover {
        transform: translateY(-3px) scale(1.1);
        color: white;
        text-decoration: none;
        border-color: transparent;
    }

    .social-icon:nth-child(1):hover {
        background: #1877F2;
        box-shadow: 0 5px 20px rgba(24, 119, 242, 0.4);
    }

    .social-icon:nth-child(2):hover {
        background: #E4405F;
        box-shadow: 0 5px 20px rgba(228, 64, 95, 0.4);
    }

    .social-icon:nth-child(3):hover {
        background: #000000;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    }

    .social-icon:nth-child(4):hover {
        background: #0A66C2;
        box-shadow: 0 5px 20px rgba(10, 102, 194, 0.4);
    }

    .social-icon:nth-child(5):hover {
        background: #FF0000;
        box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
    }

    .social-icon:nth-child(6):hover {
        background: #0088CC;
        box-shadow: 0 5px 20px rgba(0, 136, 204, 0.4);
    }

/* ===== Footer Headings ===== */
.footer-heading {
    color: #f1f5f9;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: linear-gradient(135deg, #E1306C, #8B5CF6);
        border-radius: 2px;
        transition: width 0.3s ease;
    }

.footer-column:hover .footer-heading::after {
    width: 50px;
}

/* ===== Footer Links ===== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .footer-links li a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        position: relative;
    }

        .footer-links li a::before {
            content: '›';
            opacity: 0;
            transform: translateX(-5px);
            transition: all 0.3s ease;
            color: #E1306C;
            font-size: 1.2rem;
        }

        .footer-links li a:hover {
            color: #f1f5f9;
            transform: translateX(5px);
        }

            .footer-links li a:hover::before {
                opacity: 1;
                transform: translateX(0);
            }

/* ===== Newsletter ===== */
.newsletter-column {
    gap: 10px;
}

.newsletter-text {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 5px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #f1f5f9;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 0;
}

    .newsletter-input:focus {
        outline: none;
        border-color: #E1306C;
        background: rgba(255, 255, 255, 0.08);
        box-shadow: 0 0 0 3px rgba(225, 48, 108, 0.2);
    }

    .newsletter-input::placeholder {
        color: #64748b;
    }

.newsletter-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #E1306C, #8B5CF6);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .newsletter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
    }

.newsletter-note {
    color: #64748b;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
}

    .newsletter-note i {
        color: #10b981;
    }

/* ===== Footer Bottom ===== */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    margin-top: 10px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
/* Footer WhatsApp Icon */
.footer-social .whatsapp-icon:hover {
    color: #25D366 !important;
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}
.footer-copyright {
    color: #64748b;
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

    .footer-bottom-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.8rem;
        transition: color 0.3s ease;
    }

        .footer-bottom-links a:hover {
            color: #f1f5f9;
        }

.footer-divider {
    color: #334155;
}

.footer-region {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
}

    .footer-region i {
        color: #10b981;
        font-size: 0.7rem;
    }

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .newsletter-column {
        grid-column: span 4;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .brand-column {
        grid-column: span 2;
    }

    .newsletter-column {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-modern {
        padding: 40px 15px 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .brand-column {
        grid-column: span 1;
    }

    .newsletter-column {
        grid-column: span 1;
    }

    .footer-logo {
        font-size: 1.8rem;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        font-size: 1.5rem;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-links li a {
        font-size: 0.85rem;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}