/* Social Media Marketing Page Styling */
:root {
    --smm-primary: #1DA1F2; /* Twitter Blue */
    --smm-secondary: #E1306C; /* Instagram Pink */
    --smm-gradient: linear-gradient(135deg, #1DA1F2 0%, #E1306C 100%);
    --smm-glass: rgba(255, 255, 255, 0.03);
    --smm-border: rgba(255, 255, 255, 0.1);
}

.smm-page {
    padding-top: 80px;
    background: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
}

/* Background Shapes */
.smm-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.smm-shape {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
}

.smm-shape-1 {
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--smm-primary);
    animation: float 20s infinite alternate;
}

.smm-shape-2 {
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--smm-secondary);
    animation: float 15s infinite alternate-reverse;
}

/* Hero Section */
.smm-hero {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.smm-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.smm-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: 'Space Grotesk', sans-serif;
}

.smm-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(29, 161, 242, 0.1);
    border: 1px solid rgba(29, 161, 242, 0.2);
    border-radius: 100px;
    color: var(--smm-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Common */
.smm-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.smm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.smm-img-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--smm-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.smm-img-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.smm-img-box:hover img {
    transform: scale(1.05);
}

/* Goal Cards */
.smm-goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.smm-goal-card {
    background: var(--smm-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--smm-border);
    padding: 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.smm-goal-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--smm-primary);
    transform: translateY(-5px);
}

/* Platform Cards */
.smm-platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.smm-platform-card {
    background: var(--smm-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--smm-border);
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.smm-platform-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--smm-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.smm-platform-icon {
    width: 70px;
    height: 70px;
    background: var(--smm-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: white;
}

.smm-platform-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text);
}

.smm-platform-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Box */
.smm-cta-box {
    background: var(--smm-gradient);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.smm-cta-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.smm-cta-box p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
}

@media (max-width: 992px) {
    .smm-hero-grid, .smm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .smm-hero-visual {
        order: -1;
    }
}
