/* ================================================
   SOCIAL MEDIA MARKETING PAGE CSS
   Prestige Growth Media
   ================================================ */

/* ============================================
   HERO SECTION
   ============================================ */
.smm-hero {
    padding: 80px 0 60px;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.smm-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(160deg, #fff5f5 0%, #ffe0e0 100%);
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
    z-index: 0;
}

.smm-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.smm-hero-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
}

.smm-hero-title {
    font-size: clamp(30px, 4.2vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 22px;
}

.smm-hero-title span {
    color: var(--red);
    display: block;
}

.smm-hero-desc {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 34px;
    max-width: 500px;
}

.smm-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.smm-hero-feats {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.smm-feat {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
}

.smm-feat i {
    font-size: 17px;
    color: var(--red);
}

/* Right Image */
.smm-hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.smm-hero-img-wrap {
    width: 100%;
    max-width: 540px;
    position: relative;
}

.smm-hero-img-main {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
}

.smm-hero-img-main img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    display: block;
    background: linear-gradient(135deg, #fff5f5, #ffe8e8);
}

/* "Content Connects Converts" badge */
.smm-ccc-badge {
    position: absolute;
    top: 0px;
    right: -10px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--black);
    line-height: 1.5;
    animation: floatBadge 3s ease-in-out infinite;
}

.smm-ccc-badge span { color: var(--red); font-style: italic; }

@keyframes floatBadge {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}


/* ============================================
   ABOUT SECTION
   ============================================ */
.smm-about-section {
    padding: 90px 0;
    background: #f8f9fa;
}

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

.smm-about-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,0.1);
}

.smm-about-img img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.smm-about-img:hover img { transform: scale(1.03); }

.smm-about-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

.smm-about-title {
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 18px;
}

.smm-about-title span { color: var(--red); }

.smm-about-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 26px;
}

.smm-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.smm-check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
}

.smm-check-item i {
    width: 22px;
    height: 22px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    flex-shrink: 0;
}

.smm-results-badge {
    background: var(--black);
    border-radius: 14px;
    padding: 18px 22px;
    display: inline-block;
    margin-top: 20px;
}

.smm-results-badge p {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.6;
}

.smm-results-badge p span { color: var(--red); font-size: 17px; }


/* ============================================
   SERVICES GRID (5 Cards)
   ============================================ */
.smm-services-section {
    padding: 90px 0;
    background: #fff;
}

.smm-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.smm-services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.smm-svc-card {
    background: #fff;
    border: 1.5px solid #efefef;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.smm-svc-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.smm-svc-card:hover::after  { transform: scaleX(1); }
.smm-svc-card:hover {
    border-color: transparent;
    box-shadow: 0 10px 35px rgba(0,0,0,0.09);
    transform: translateY(-5px);
}

.smm-svc-icon {
    width: 60px; height: 60px;
    background: #fff5f5;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--red);
    transition: all 0.3s ease;
}

.smm-svc-card:hover .smm-svc-icon {
    background: var(--red);
    color: #fff;
    transform: scale(1.05);
}

.smm-svc-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.3;
}

.smm-svc-card p {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 14px;
}

.smm-learn-more {
    font-size: 12px;
    font-weight: 700;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.smm-svc-card:hover .smm-learn-more { gap: 8px; }


/* ============================================
   PROCESS + CTA BOX (Side by Side)
   ============================================ */
.smm-process-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.smm-process-inner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.smm-process-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 14px;
}

.smm-process-title {
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 14px;
}

.smm-process-title span { color: var(--red); }

.smm-process-desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* 5-Step Row */
.smm-steps-row {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.smm-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.smm-step-connector {
    flex: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 18px;
    color: var(--red);
    font-size: 14px;
}

.smm-step-num {
    width: 52px;
    height: 52px;
    background: #fff;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 11px;
    font-weight: 900;
    color: var(--red);
    transition: all 0.3s ease;
}

.smm-step:hover .smm-step-num {
    background: var(--red);
    color: #fff;
}

.smm-step h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.smm-step p {
    font-size: 11px;
    color: var(--gray);
    line-height: 1.5;
}

/* Right CTA box */
.smm-process-cta-box {
    background: var(--red);
    border-radius: 20px;
    padding: 40px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.smm-process-cta-box::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 130px; height: 130px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}

.smm-process-cta-box::after {
    content: '';
    position: absolute;
    bottom: -50px; left: -30px;
    width: 160px; height: 160px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.smm-process-cta-box h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 14px;
    position: relative; z-index: 1;
}

.smm-process-cta-box p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 24px;
    position: relative; z-index: 1;
}

.smm-process-cta-box .btn {
    position: relative; z-index: 1;
}


/* ============================================
   PLATFORMS SECTION
   ============================================ */
.smm-platforms-section {
    padding: 90px 0;
    background: #fff;
}

.smm-platforms-header {
    text-align: center;
    margin-bottom: 60px;
}

.smm-platforms-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

.smm-platform-card {
    background: #fff;
    border: 1.5px solid #efefef;
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.smm-platform-card:hover {
    border-color: transparent;
    box-shadow: 0 10px 35px rgba(0,0,0,0.09);
    transform: translateY(-5px);
}

.smm-plat-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 28px;
    transition: transform 0.3s ease;
}

.smm-platform-card:hover .smm-plat-icon { transform: scale(1.1); }

.smm-platform-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
}

.smm-platform-card p {
    font-size: 11px;
    color: var(--gray);
}

/* Platform Colors */
.plat-insta  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color:#fff; }
.plat-fb     { background: #1877f2; color:#fff; }
.plat-li     { background: #0077b5; color:#fff; }
.plat-tiktok { background: #010101; color:#fff; }
.plat-yt     { background: #ff0000; color:#fff; }
.plat-x      { background: #000000; color:#fff; }
.plat-pin    { background: #e60023; color:#fff; }


/* ============================================
   RESULTS / SUCCESS STORIES
   ============================================ */
.smm-results-section {
    padding: 90px 0;
    background: #f8f9fa;
}

.smm-results-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 16px;
}

.smm-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.smm-result-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1.5px solid #efefef;
    transition: all 0.3s ease;
}

.smm-result-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.09);
    border-color: transparent;
    transform: translateY(-4px);
}

.smm-result-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.smm-stat-icon {
    width: 50px; height: 50px;
    background: #fff5f5;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--red); font-size: 20px; flex-shrink: 0;
}

.smm-big-num {
    font-size: 36px;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
}

.smm-big-num span { color: var(--red); }

.smm-result-label { font-size: 12px; color: var(--gray); margin-top: 3px; }

.smm-result-card h4 {
    font-size: 16px; font-weight: 700;
    color: var(--black); margin-bottom: 8px;
}

.smm-result-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }

.smm-result-client {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.smm-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red), #ff6b6e);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 15px; font-weight: 700; flex-shrink: 0;
}

.smm-result-client span { display: block; font-size: 13px; font-weight: 700; color: var(--black); }
.smm-result-client small { font-size: 11px; color: var(--gray); }


/* ============================================
   FAQ SECTION
   ============================================ */
.smm-faq-section {
    padding: 90px 0;
    background: #fff;
}

.smm-faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
    align-items: start;
}

.smm-faq-title {
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 900;
    color: var(--black);
    margin-bottom: 14px;
    line-height: 1.2;
}

.smm-faq-title span { color: var(--red); }

.smm-faq-desc { font-size: 15px; color: var(--gray); line-height: 1.7; }

/* Accordion (reuse from SEO) */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #efefef;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.active { border-color: var(--red); }

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    gap: 12px;
    transition: color 0.3s ease;
    user-select: none;
}

.faq-item.active .faq-question { color: var(--red); }

.faq-question .faq-icon {
    width: 28px; height: 28px;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: var(--gray); flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 22px 18px; font-size: 14px; color: var(--gray); line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 200px; }


/* ============================================
   CTA SECTION
   ============================================ */
.smm-cta-section {
    background: linear-gradient(135deg, var(--red) 0%, #8b0000 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.smm-cta-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.smm-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.smm-cta-label {
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: rgba(255,255,255,0.65);
    margin-bottom: 14px;
}

.smm-cta-title {
    font-size: clamp(24px, 3.8vw, 42px);
    font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 12px;
}

.smm-cta-desc { font-size: 15px; color: rgba(255,255,255,0.8); }

/* Social icons deco */
.smm-cta-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    right: 220px;
    top: 50%;
    transform: translateY(-50%);
}

.smm-cta-icon-wrap {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: #fff;
    opacity: 0.15;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .smm-services-grid  { grid-template-columns: repeat(3, 1fr); }
    .smm-platforms-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
    .smm-hero-inner,
    .smm-about-inner,
    .smm-faq-inner      { grid-template-columns: 1fr; gap: 40px; }
    .smm-hero::after    { display: none; }
    .smm-process-inner  { grid-template-columns: 1fr; gap: 40px; }
    .smm-results-grid   { grid-template-columns: repeat(2, 1fr); }
    .smm-cta-inner      { flex-direction: column; text-align: center; }
    .smm-cta-icons      { display: none; }
    .smm-results-header { flex-direction: column; align-items: flex-start; }
    .smm-platforms-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .smm-services-grid  { grid-template-columns: repeat(2, 1fr); }
    .smm-results-grid   { grid-template-columns: 1fr; }
    .smm-platforms-grid { grid-template-columns: repeat(3, 1fr); }
    .smm-steps-row      { flex-wrap: wrap; justify-content: center; gap: 16px; }
    .smm-step           { flex: 0 0 calc(50% - 8px); }
    .smm-step-connector { display: none; }
}

@media (max-width: 576px) {
    .smm-hero-img-main img { max-height: 320px; }
    .smm-services-grid  { grid-template-columns: 1fr 1fr; }
    .smm-platforms-grid { grid-template-columns: repeat(2, 1fr); }
    .smm-about-img img  { height: 280px; }
    .smm-ccc-badge      { right: 5px; top: 5px; font-size: 11px; }
}
