/*
Theme Name: SMM Consultancy
Theme URI: https://example.com/smm-consultancy
Author: Antigravity
Author URI: https://example.com/
Description: A modern, high-converting WordPress theme for Social Media Marketing Consultancies.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: smm-consultancy
*/

:root {
    --primary: #7C3AED;
    --primary-dark: #6D28D9;
    --secondary: #3B82F6;
    --dark: #0F172A;
    --light: #F8FAFC;
    --white: #FFFFFF;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-text span {
    color: var(--primary);
}

/* Footer logo */
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.footer-logo-text span {
    color: #a78bfa;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    color: var(--dark);
    font-weight: 500;
}

nav ul li a:hover {
    color: var(--primary);
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

footer h4 {
    color: var(--white);
    margin-bottom: 25px;
}

footer ul {
    list-style: none;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: var(--text-muted);
}

footer ul li a:hover {
    color: var(--white);
}

.copy {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
}

/* Custom Homepage Styles and Animations */
.hero {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 27, 75, 0.9)), url('../images/hero-bg.png') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
}

.hero-image {
    flex: 1;
    z-index: 1;
}

.hero-graphic {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: var(--glass);
    border: 1px solid var(--glass-border);
}

.hero-graphic img {
    width: 100%;
    height: auto;
    display: block;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--white);
    background: linear-gradient(to right, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    .hero h1 { font-size: 2.5rem; }
}

.hero p {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-btns .btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

.hero-btns .btn-outline:hover {
    background-color: var(--white);
    color: var(--dark);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.services-overview {
    padding: 100px 0;
    background-color: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
}

.service-card i {
    font-size: 40px;
    color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card:hover i {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 15px;
}

.why-choose-us {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}

.wcu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 992px) {
    .wcu-grid { grid-template-columns: 1fr; }
}

.wcu-content h2 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.wcu-content ul {
    list-style: none;
}

.wcu-content li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

.wcu-content li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 2px;
    background: var(--primary);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.wcu-image {
    position: relative;
}

.wcu-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.results {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    position: relative;
}

.results-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    gap: 30px;
}

.result-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-item .number-wrapper {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
}

.result-item .number {
    font-size: 3.5rem;
    font-weight: 800;
}

.result-item .symbol {
    font-size: 2rem;
    font-weight: 800;
}

.result-item .label {
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-banner {
    padding: 100px 0;
    text-align: center;
    background: var(--light);
    position: relative;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.services-overview {
    padding: 100px 0;
    background-color: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
}

.service-card i {
    font-size: 40px;
    color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card:hover i {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 15px;
}

.why-choose-us {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
}

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

@media (max-width: 992px) {
    .wcu-grid { grid-template-columns: 1fr; }
}

.wcu-content h2 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.wcu-content ul {
    list-style: none;
}

.wcu-content li {
    margin-bottom: 20px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 35px;
}

.wcu-content li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 2px;
    background: var(--primary);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.wcu-image {
    position: relative;
}

.wcu-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.results {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    position: relative;
}

.results-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    gap: 30px;
}

.result-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-item .number-wrapper {
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
}

.result-item .number {
    font-size: 3.5rem;
    font-weight: 800;
}

.result-item .symbol {
    font-size: 2rem;
    font-weight: 800;
}

.result-item .label {
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-banner {
    padding: 100px 0;
    text-align: center;
    background: var(--light);
    position: relative;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* ============================================================
   HEADER ENHANCEMENTS
   ============================================================ */
header { transition: background 0.3s ease, box-shadow 0.3s ease; }
header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.header-actions { display: flex; align-items: center; gap: 15px; }
.hamburger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--dark); border-radius: 2px; transition: all 0.3s ease;
}
nav ul li a.active { color: var(--primary); font-weight: 600; }

/* ============================================================
   PAGE HERO (SHARED)
   ============================================================ */
.page-hero {
    position: relative; padding: 110px 0 80px;
    background: linear-gradient(135deg, #0F172A 0%, #1e1b4b 100%);
    color: var(--white); text-align: center; overflow: hidden;
}
.page-hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(124,58,237,0.2) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero-content { position: relative; z-index: 1; }
.page-tag {
    display: inline-block;
    background: rgba(124,58,237,0.3); color: #a78bfa;
    border: 1px solid rgba(124,58,237,0.4);
    padding: 6px 18px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 20px;
}
.page-hero h1 {
    font-size: 3rem; color: var(--white); margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #a78bfa);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero p { font-size: 1.15rem; color: #cbd5e1; max-width: 620px; margin: 0 auto; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-mission { padding: 90px 0; background: var(--light); }
.mission-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.mission-card {
    background: var(--white); padding: 40px; border-radius: 20px;
    border: 1px solid #e2e8f0; text-align: center; transition: all 0.3s ease;
}
.mission-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.3); }
.mission-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 25px; font-size: 1.8rem; color: white;
}
.mission-card h3 { margin-bottom: 15px; }
.our-story { padding: 100px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.story-text .section-tag {
    display: inline-block; color: var(--primary);
    font-weight: 700; font-size: 0.85rem; letter-spacing: 1px;
    text-transform: uppercase; margin-bottom: 15px;
}
.story-text h2 { font-size: 2.3rem; margin-bottom: 20px; }
.story-text p { color: var(--text-muted); margin-bottom: 15px; line-height: 1.8; }
.story-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-box {
    background: var(--light); border-radius: 16px; padding: 30px;
    text-align: center; border: 1px solid #e2e8f0; transition: all 0.3s ease;
}
.stat-box:hover { border-color: var(--primary); background: white; }
.stat-num {
    display: block; font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; margin-top: 5px; display: block; }
.team-section { padding: 90px 0; background: var(--light); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.team-card {
    background: var(--white); border-radius: 20px; padding: 40px 30px;
    text-align: center; border: 1px solid #e2e8f0; transition: all 0.3s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.team-avatar {
    width: 90px; height: 90px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; color: white; margin: 0 auto 20px;
}
.team-card h4 { font-size: 1.2rem; margin-bottom: 4px; }
.team-card span { color: var(--primary); font-size: 0.9rem; font-weight: 600; display: block; margin-bottom: 12px; }
.team-card p { color: var(--text-muted); font-size: 0.95rem; }
.about-cta { padding: 90px 0; background: linear-gradient(135deg, #0F172A, #1e1b4b); text-align: center; }
.about-cta-inner h2 { color: white; font-size: 2.5rem; margin-bottom: 15px; }
.about-cta-inner p { color: #94a3b8; margin-bottom: 30px; font-size: 1.1rem; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-list-section { padding: 80px 0; }
.services-detailed-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; }
.service-detail-card {
    padding: 40px; background: var(--white); border-radius: 20px;
    border: 1px solid #e2e8f0; transition: all 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
    position: relative; overflow: hidden;
}
.service-detail-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.service-detail-card:hover { transform: translateY(-10px); box-shadow: 0 25px 50px rgba(124,58,237,0.12); border-color: transparent; }
.service-detail-card:hover::before { transform: scaleX(1); }
.sdc-icon {
    width: 65px; height: 65px;
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(59,130,246,0.1));
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--primary); margin-bottom: 22px; transition: all 0.3s ease;
}
.service-detail-card:hover .sdc-icon { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; }
.service-detail-card h3 { font-size: 1.3rem; margin-bottom: 15px; }
.service-detail-card > p { color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.sdc-list { list-style: none; margin-bottom: 25px; }
.sdc-list li { color: var(--text-muted); padding: 6px 0; font-size: 0.95rem; }
.sdc-list li::before { content: ' '; color: var(--primary); font-weight: 700; }
.process-section { padding: 90px 0; background: var(--light); }
.process-steps { display: flex; align-items: flex-start; flex-wrap: wrap; justify-content: center; }
.process-step { text-align: center; max-width: 200px; padding: 20px; }
.step-num {
    font-size: 3rem; font-weight: 900; font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    display: block; margin-bottom: 12px;
}
.process-step h4 { margin-bottom: 10px; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.process-arrow { font-size: 1.5rem; color: #cbd5e1; padding: 20px 10px 0; }
.services-cta { padding: 90px 0; background: linear-gradient(135deg, var(--primary), var(--secondary)); text-align: center; }
.services-cta-inner h2 { color: white; font-size: 2.3rem; margin-bottom: 15px; }
.services-cta-inner p { color: rgba(255,255,255,0.85); margin-bottom: 30px; font-size: 1.1rem; }
.services-cta-inner .btn-primary { background: white; color: var(--primary); }
.services-cta-inner .btn-primary:hover { background: var(--dark); color: white; box-shadow: none; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-section { padding: 80px 0; }
.blog-filters { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 50px; }
.filter-btn {
    padding: 10px 22px; border-radius: 50px; border: 2px solid #e2e8f0;
    background: white; font-weight: 600; font-family: var(--font-body);
    font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease; color: var(--text-muted);
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 30px; }
.blog-card {
    background: white; border-radius: 20px; overflow: hidden;
    border: 1px solid #e2e8f0; transition: all 0.3s ease;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: transparent; }
.blog-card.hidden { display: none; }
.blog-card-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 3rem; color: rgba(255,255,255,0.9); }
.blog-card-body { padding: 28px; }
.blog-cat {
    display: inline-block; background: rgba(124,58,237,0.1); color: var(--primary);
    padding: 4px 12px; border-radius: 50px; font-size: 0.8rem;
    font-weight: 700; margin-bottom: 12px; letter-spacing: 0.5px;
}
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 12px; line-height: 1.4; }
.blog-card-body h3 a { color: var(--dark); transition: color 0.2s; }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body > p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.6; margin-bottom: 18px; }
.blog-meta { display: flex; gap: 20px; color: var(--text-muted); font-size: 0.85rem; }
.blog-meta i { margin-right: 5px; color: var(--primary); }
.blog-newsletter { padding: 80px 0; background: var(--light); }
.newsletter-box {
    max-width: 650px; margin: 0 auto; text-align: center;
    background: white; padding: 60px 50px; border-radius: 24px;
    border: 1px solid #e2e8f0; box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.newsletter-box h2 { font-size: 2rem; margin-bottom: 12px; }
.newsletter-box p { color: var(--text-muted); margin-bottom: 30px; }
.newsletter-form { display: flex; gap: 12px; }
.newsletter-form input {
    flex: 1; padding: 14px 20px; border: 2px solid #e2e8f0;
    border-radius: 50px; font-family: var(--font-body); font-size: 0.95rem;
    outline: none; transition: border-color 0.3s;
}
.newsletter-form input:focus { border-color: var(--primary); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 90px 0; }
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 60px; align-items: start; }
.contact-form-wrapper h2, .contact-info-wrapper h2 { font-size: 1.8rem; margin-bottom: 30px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: var(--text-main); }
.form-group input, .form-group select, .form-group textarea {
    padding: 14px 16px; border: 2px solid #e2e8f0; border-radius: 12px;
    font-family: var(--font-body); font-size: 0.95rem; outline: none;
    transition: all 0.3s ease; background: white; color: var(--text-main);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary); box-shadow: 0 0 0 4px rgba(124,58,237,0.1);
}
.form-group textarea { resize: vertical; }
.btn-full { width: 100%; justify-content: center; display: flex; align-items: center; gap: 10px; }
.form-success {
    display: flex; align-items: center; gap: 12px; background: #ecfdf5;
    color: #059669; border: 1px solid #a7f3d0; padding: 16px 20px;
    border-radius: 12px; font-weight: 600;
}
.form-success i { font-size: 1.4rem; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.contact-info-card {
    display: flex; gap: 16px; align-items: flex-start; padding: 20px;
    background: var(--light); border-radius: 14px; border: 1px solid #e2e8f0; transition: all 0.3s ease;
}
.contact-info-card:hover { border-color: var(--primary); background: white; }
.ci-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem;
}
.contact-info-card h4 { font-size: 0.9rem; margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { color: var(--text-muted); font-size: 0.95rem; }
.contact-info-card a:hover { color: var(--primary); }
.contact-social-links { display: flex; gap: 12px; }
.social-link {
    width: 42px; height: 42px; background: var(--light); border: 1px solid #e2e8f0;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 1rem; transition: all 0.3s ease;
}
.social-link:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-3px); }

/* ============================================================
   FREE QUOTE PAGE
   ============================================================ */
.quote-hero {
    padding: 100px 0 80px; background: linear-gradient(135deg, #0F172A, #1e1b4b);
    color: white; text-align: center; position: relative; overflow: hidden;
}
.quote-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(124,58,237,0.2), transparent 60%);
    pointer-events: none;
}
.quote-hero-content { position: relative; z-index: 1; }
.quote-hero h1 {
    font-size: 2.8rem; color: white; margin: 15px 0;
    background: linear-gradient(to right, #fff, #a78bfa);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.quote-hero p { color: #cbd5e1; font-size: 1.1rem; max-width: 580px; margin: 0 auto; }
.quote-section { padding: 80px 0; background: var(--light); }
.quote-wrapper { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.quote-form {
    background: white; padding: 50px; border-radius: 24px;
    border: 1px solid #e2e8f0; box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}
.quote-step { display: none; }
.quote-step.active { display: block; }
.step-header { margin-bottom: 35px; }
.step-badge {
    display: inline-block; background: rgba(124,58,237,0.1); color: var(--primary);
    padding: 5px 14px; border-radius: 50px; font-size: 0.8rem;
    font-weight: 700; margin-bottom: 12px; letter-spacing: 0.5px;
}
.step-header h2 { font-size: 1.8rem; }
.step-nav { display: flex; gap: 15px; margin-top: 30px; }
.step-nav .btn { min-width: 140px; display: flex; align-items: center; gap: 8px; justify-content: center; }
.checkbox-grid, .radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.checkbox-card, .radio-card {
    display: flex; align-items: center; gap: 10px; padding: 14px 16px;
    border: 2px solid #e2e8f0; border-radius: 12px; cursor: pointer;
    transition: all 0.25s ease; font-weight: 500; font-size: 0.9rem; color: var(--text-main);
}
.checkbox-card:hover, .radio-card:hover { border-color: var(--primary); background: rgba(124,58,237,0.04); }
.checkbox-card input, .radio-card input { accent-color: var(--primary); }
.checkbox-card i { color: var(--primary); font-size: 1rem; }
.quote-success { text-align: center; padding: 40px 20px; }
.success-icon { font-size: 5rem; color: #10B981; margin-bottom: 25px; display: block; }
.quote-success h2 { font-size: 2.2rem; margin-bottom: 15px; }
.quote-success p { color: var(--text-muted); font-size: 1.05rem; max-width: 440px; margin: 0 auto; }
.quote-sidebar { display: flex; flex-direction: column; gap: 20px; }
.quote-trust { background: white; border-radius: 20px; padding: 30px; border: 1px solid #e2e8f0; }
.quote-trust h4 { margin-bottom: 20px; }
.quote-trust ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.quote-trust li { display: flex; align-items: center; gap: 10px; color: var(--text-main); font-size: 0.95rem; }
.quote-trust li i { color: #10B981; font-size: 0.9rem; }
.quote-testimonial { background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 20px; padding: 30px; color: white; }
.quote-testimonial p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 15px; font-style: italic; }
.quote-testimonial span { font-size: 0.85rem; opacity: 0.8; font-weight: 600; }

/* ============================================================
   FOOTER SOCIAL LINKS
   ============================================================ */
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 38px; height: 38px; background: rgba(255,255,255,0.08);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #94a3b8; font-size: 0.95rem; transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--primary); color: white; transform: translateY(-3px); }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
    .story-grid, .contact-grid, .quote-wrapper, .wcu-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    #site-nav {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: white; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 999;
    }
    #site-nav.open { display: block; }
    #site-nav ul { flex-direction: column; gap: 5px; }
    #site-nav ul li a { display: block; padding: 12px 16px; border-radius: 8px; }
    #site-nav ul li a:hover { background: var(--light); }
    .page-hero h1, .hero h1 { font-size: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .quote-form { padding: 30px 20px; }
    .checkbox-grid, .radio-grid { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; align-items: center; }
    .process-arrow { transform: rotate(90deg); padding: 0; }
    .newsletter-form { flex-direction: column; }
    .newsletter-box { padding: 40px 25px; }
    .blog-grid, .services-detailed-grid { grid-template-columns: 1fr; }
    .step-nav { flex-direction: column; }
    .hero .container { flex-direction: column; }
    .hiw-grid { grid-template-columns: 1fr; }
    .hiw-connector { display: none; }
    .pricing-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .blog-preview-grid { grid-template-columns: 1fr; }
    .final-cta-btns { flex-direction: column; align-items: center; }
    .hero-float-card { display: none; }
}

/* ============================================================
   HERO ENHANCEMENTS
   ============================================================ */
.gradient-text {
    background: linear-gradient(to right, #a78bfa, #60a5fa);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.4);
    padding: 8px 18px; border-radius: 50px; font-size: 0.875rem;
    color: #a78bfa; font-weight: 600; margin-bottom: 25px;
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #10B981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.3); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%,100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.3); }
    50% { box-shadow: 0 0 0 6px rgba(16,185,129,0.1); }
}
.btn-glow { box-shadow: 0 0 20px rgba(124,58,237,0.4); }
.btn-glow:hover { box-shadow: 0 0 30px rgba(124,58,237,0.6); }
.btn-hero-outline { border-color: rgba(255,255,255,0.4); color: white; }
.btn-hero-outline:hover { background: white; color: var(--dark); }

.hero-social-proof { display: flex; align-items: center; gap: 16px; margin-top: 35px; }
.proof-avatars { display: flex; }
.proof-avatars .avatar {
    width: 36px; height: 36px; border-radius: 50%; margin-left: -10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; color: white; border: 2px solid #1e1b4b;
}
.proof-avatars .avatar:first-child { margin-left: 0; }
.proof-stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 2px; }
.proof-text span { font-size: 0.9rem; color: #94a3b8; }
.proof-text strong { color: white; }

.hero-float-card {
    position: absolute; background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px; padding: 12px 18px;
    display: flex; align-items: center; gap: 12px;
    font-size: 0.85rem; color: white; z-index: 10;
    animation: float-card 4s ease-in-out infinite;
}
.hero-float-card i { font-size: 1.4rem; }
.hero-float-card div { display: flex; flex-direction: column; gap: 2px; }
.hero-float-card strong { font-weight: 700; font-size: 1rem; }
.hero-float-card span { opacity: 0.75; font-size: 0.78rem; }
.card-1 { bottom: 30px; right: -20px; animation-delay: 0s; }
.card-2 { top: 20px; left: -30px; animation-delay: 2s; }
@keyframes float-card {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-graphic { position: relative; }

.hero-scroll-hint {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%); text-align: center;
    color: rgba(255,255,255,0.4); font-size: 0.8rem;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-arrow { animation: bounce-down 2s infinite; }
@keyframes bounce-down { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ============================================================
   TRUSTED BRANDS TICKER
   ============================================================ */
.trusted-brands {
    padding: 30px 0; background: var(--light);
    border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
}
.trusted-label {
    text-align: center; font-size: 0.85rem;
    color: var(--text-muted); font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px;
}
.brands-ticker-wrapper { overflow: hidden; }
.brands-ticker {
    display: flex; gap: 40px; width: max-content;
    animation: ticker-scroll 25s linear infinite;
}
.brands-ticker span {
    font-weight: 700; font-size: 1rem; color: var(--text-muted);
    white-space: nowrap; letter-spacing: 0.5px;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEADER (SHARED)
   ============================================================ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag-light {
    display: inline-block;
    background: rgba(124,58,237,0.08); color: var(--primary);
    border: 1px solid rgba(124,58,237,0.2);
    padding: 6px 18px; border-radius: 50px;
    font-size: 0.85rem; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 16px;
}
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 12px auto 0; }
.services-cta-link { text-align: center; margin-top: 50px; }

/* Service card link */
.card-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-top: 15px;
    transition: gap 0.2s ease;
}
.card-link:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US &mdash; IMAGE BADGE
   ============================================================ */
.wcu-image { position: relative; }
.wcu-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: white; border-radius: 14px; padding: 14px 18px;
    display: flex; gap: 12px; align-items: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); border: 1px solid #e2e8f0;
}
.wcu-badge i { font-size: 1.6rem; }
.wcu-badge div { display: flex; flex-direction: column; }
.wcu-badge strong { font-size: 0.95rem; color: var(--dark); }
.wcu-badge span { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   RESULTS SECTION &mdash; ICON + HEADER
   ============================================================ */
.results-header { text-align: center; margin-bottom: 50px; color: white; }
.results-header h2 { font-size: 2.3rem; color: white; margin-bottom: 10px; }
.results-header p { color: rgba(255,255,255,0.75); }
.result-icon {
    font-size: 1.8rem; color: rgba(255,255,255,0.6); margin-bottom: 10px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { padding: 100px 0; background: var(--light); }
.hiw-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0; align-items: start;
}
.hiw-card {
    background: white; border-radius: 20px; padding: 35px 28px;
    border: 1px solid #e2e8f0; text-align: center; position: relative;
    transition: all 0.3s ease;
}
.hiw-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(124,58,237,0.12); border-color: rgba(124,58,237,0.3); }
.hiw-num {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white; font-weight: 800; font-size: 0.8rem;
    padding: 4px 14px; border-radius: 50px;
}
.hiw-icon {
    width: 60px; height: 60px; margin: 15px auto 20px;
    background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(59,130,246,0.1));
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--primary); transition: all 0.3s ease;
}
.hiw-card:hover .hiw-icon { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: white; }
.hiw-card h3 { font-size: 1.05rem; margin-bottom: 12px; }
.hiw-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.hiw-connector {
    display: flex; align-items: center; justify-content: center;
    color: #cbd5e1; font-size: 1.2rem; padding: 0 10px; margin-top: 60px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 100px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testi-card {
    background: white; border-radius: 20px; padding: 35px;
    border: 1px solid #e2e8f0; transition: all 0.3s ease;
    position: relative;
}
.testi-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.featured-testi {
    background: linear-gradient(135deg, #0F172A, #1e1b4b);
    border-color: rgba(124,58,237,0.3);
    transform: scale(1.03);
}
.featured-testi:hover { transform: scale(1.03) translateY(-8px); }
.testi-stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 18px; }
.featured-testi .testi-stars { color: #F59E0B; }
.testi-quote {
    font-size: 0.97rem; line-height: 1.75; color: var(--text-muted);
    margin-bottom: 25px; font-style: italic;
}
.featured-testi .testi-quote { color: #94a3b8; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.95rem; color: var(--dark); }
.featured-testi .testi-author strong { color: white; }
.testi-author span { font-size: 0.83rem; color: var(--text-muted); }
.featured-testi .testi-author span { color: #64748b; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { padding: 100px 0; background: var(--light); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: start; }
.pricing-card {
    background: white; border-radius: 24px; padding: 40px;
    border: 1px solid #e2e8f0; position: relative; transition: all 0.3s ease;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 25px 50px rgba(0,0,0,0.1); }
.pricing-card.popular {
    background: linear-gradient(135deg, #0F172A, #1e1b4b);
    border-color: rgba(124,58,237,0.5);
    transform: scale(1.04);
}
.pricing-card.popular:hover { transform: scale(1.04) translateY(-8px); }
.popular-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white; font-size: 0.78rem; font-weight: 700; padding: 5px 16px;
    border-radius: 50px; white-space: nowrap;
}
.plan-badge { font-size: 0.85rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.popular .plan-badge { color: #a78bfa; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 14px; }
.price-num { font-size: 2.8rem; font-weight: 800; font-family: var(--font-heading); color: var(--dark); }
.popular .price-num { color: white; }
.price-per { font-size: 1rem; color: var(--text-muted); }
.popular .price-per { color: #64748b; }
.plan-desc { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
.popular .plan-desc { color: #64748b; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.93rem; color: var(--text-main); }
.popular .plan-features li { color: #cbd5e1; }
.plan-features li i.fa-check { color: #10B981; }
.plan-features li i.fa-times { color: #cbd5e1; }
.plan-features li.disabled { opacity: 0.4; }
.plan-btn { width: 100%; text-align: center; justify-content: center; display: block; }

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-preview { padding: 100px 0; }
.blog-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.bp-card {
    background: white; border-radius: 20px; overflow: hidden;
    border: 1px solid #e2e8f0; transition: all 0.3s ease;
}
.bp-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: transparent; }
.bp-img { height: 170px; display: flex; align-items: center; justify-content: center; font-size: 2.8rem; color: rgba(255,255,255,0.85); }
.bp-body { padding: 26px; }
.bp-body h3 { font-size: 1.05rem; margin: 10px 0 12px; line-height: 1.4; }
.bp-body h3 a { color: var(--dark); }
.bp-body h3 a:hover { color: var(--primary); }
.bp-body > p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 0.9rem; transition: gap 0.2s; }
.read-more:hover { gap: 10px; }
.blog-preview-cta { text-align: center; margin-top: 50px; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    background: #0F172A; /* Fallback */
    text-align: center;
    color: white;
}

.final-cta-bg-img {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 0;
}

.final-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 27, 75, 0.7) 50%, rgba(15, 23, 42, 0.95) 100%);
    z-index: 1;
}

.final-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.35) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
    animation: bounce 3s infinite;
}

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

.final-cta h2 {
    font-size: 3.2rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(to right, #fff, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.final-cta p {
    color: #cbd5e1;
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.final-cta-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-cta-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 700;
}

.cta-sub-note {
    font-size: 0.9rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
}

.cta-sub-note i {
    color: #10B981;
}

/* Floating Badges */
.cta-float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    z-index: 5;
    animation: float 5s ease-in-out infinite;
}

.cta-float-badge strong {
    display: block;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
}

.cta-float-badge span {
    font-size: 0.75rem;
    color: #94a3b8;
}

.cta-fb-1 { top: 20%; left: 10%; animation-delay: 0s; }
.cta-fb-2 { bottom: 25%; right: 8%; animation-delay: 1s; }
.cta-fb-3 { top: 15%; right: 12%; animation-delay: 2.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Trust Row */
.cta-trust-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-trust-item {
    font-size: 0.85rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.cta-trust-item i {
    color: var(--primary);
}

@media (max-width: 768px) {
    .final-cta h2 { font-size: 2.4rem; }
    .cta-float-badge { display: none; }
    .final-cta-btns { flex-direction: column; }
    .cta-trust-row { gap: 15px; }
}


/* ============================================================
   BLOG PAGE ENHANCEMENTS
   ============================================================ */

.blog-hero .page-hero-content { max-width: 700px; margin: 0 auto; }
.blog-search-bar {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px; padding: 14px 24px; margin-top: 30px;
    backdrop-filter: blur(10px); transition: all 0.3s ease;
}
.blog-search-bar:focus-within { background: rgba(255,255,255,0.18); border-color: rgba(124,58,237,0.6); box-shadow: 0 0 0 4px rgba(124,58,237,0.15); }
.blog-search-bar i { color: rgba(255,255,255,0.6); font-size: 1rem; flex-shrink: 0; }
.blog-search-bar input { flex: 1; background: none; border: none; outline: none; color: white; font-size: 1rem; font-family: var(--font-body); }
.blog-search-bar input::placeholder { color: rgba(255,255,255,0.5); }
.blog-hero-stats { display: flex; justify-content: center; gap: 50px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); }
.bh-stat { text-align: center; }
.bh-stat span { display: block; font-size: 1.8rem; font-weight: 800; color: white; font-family: var(--font-heading); }
.bh-stat small { font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 500; }

.featured-post-section { padding: 70px 0 0; }
.featured-post { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.12); border: 1px solid #e2e8f0; background: white; }
.featured-post-img { position: relative; min-height: 380px; display: flex; align-items: center; justify-content: center; }
.featured-icon { font-size: 5rem; color: rgba(255,255,255,0.3); }
.featured-badge { position: absolute; top: 20px; left: 20px; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); color: white; padding: 6px 16px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; }
.featured-post-body { padding: 50px 45px; display: flex; flex-direction: column; justify-content: center; }
.featured-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.featured-post-body h2 { font-size: 1.8rem; margin-bottom: 16px; line-height: 1.3; }
.featured-post-body h2 a { color: var(--dark); transition: color 0.2s; }
.featured-post-body h2 a:hover { color: var(--primary); }
.featured-post-body > p { color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.featured-author { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; }
.featured-author .author-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.9rem; flex-shrink: 0; }
.featured-author strong { display: block; font-size: 0.95rem; }
.featured-author span { font-size: 0.82rem; color: var(--text-muted); }
.featured-read-btn { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; }
.blog-read-time { font-size: 0.82rem; color: var(--text-muted); display: flex; align-items: center; gap: 5px; }

.blog-main-section { padding: 60px 0 80px; }
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 50px; align-items: start; }
.blog-filters-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 35px; flex-wrap: wrap; gap: 14px; }
.blog-sort select { padding: 10px 16px; border: 2px solid #e2e8f0; border-radius: 10px; font-family: var(--font-body); font-size: 0.9rem; outline: none; color: var(--text-main); background: white; cursor: pointer; transition: border-color 0.2s; }
.blog-sort select:focus { border-color: var(--primary); }

.blog-card.enhanced { position: relative; }
.blog-card-cat-badge { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,0.2); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.3); color: white; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; }
.blog-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.blog-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid #f1f5f9; }
.blog-author-mini { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); }
.author-dot { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; }
.blog-stats { display: flex; gap: 12px; font-size: 0.82rem; color: var(--text-muted); }
.blog-stats i { color: var(--primary); margin-right: 3px; }

.cat-strategy  { background: rgba(245,158,11,0.1);  color: #d97706; }
.cat-ads       { background: rgba(59,130,246,0.1);   color: #2563eb; }
.cat-content   { background: rgba(236,72,153,0.1);   color: #db2777; }
.cat-analytics { background: rgba(16,185,129,0.1);   color: #059669; }
.cat-influencer{ background: rgba(124,58,237,0.1);   color: #7C3AED; }

.no-results { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 20px; text-align: center; color: var(--text-muted); gap: 14px; }
.no-results i { font-size: 3rem; color: #e2e8f0; }
.no-results h3 { color: var(--dark); }
.blog-load-more { text-align: center; margin-top: 40px; }

.blog-sidebar { display: flex; flex-direction: column; gap: 28px; position: sticky; top: 100px; }
.sidebar-widget { background: white; border-radius: 20px; padding: 28px; border: 1px solid #e2e8f0; }
.widget-title { font-size: 1rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #f1f5f9; color: var(--dark); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { padding: 6px 14px; border-radius: 50px; background: var(--light); border: 1px solid #e2e8f0; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all 0.2s ease; display: inline-block; }
.tag:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-2px); }

.popular-posts { display: flex; flex-direction: column; gap: 16px; }
.popular-post { display: flex; gap: 14px; align-items: center; padding: 10px; border-radius: 10px; transition: background 0.2s; text-decoration: none; }
.popular-post:hover { background: var(--light); }
.pp-num { font-size: 1.2rem; font-weight: 900; color: #e2e8f0; font-family: var(--font-heading); min-width: 28px; }
.pp-body span { display: block; font-size: 0.88rem; color: var(--dark); font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.pp-body small { font-size: 0.78rem; color: var(--text-muted); }
.pp-body small i { color: var(--primary); margin-right: 3px; }

.sidebar-cta-widget { background: linear-gradient(135deg, #0F172A, #1e1b4b); border-color: rgba(124,58,237,0.3); text-align: center; }
.sidebar-cta-icon { font-size: 2rem; background: linear-gradient(135deg,var(--primary),var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; margin-bottom: 14px; }
.sidebar-cta-widget h4 { color: white; margin-bottom: 10px; }
.sidebar-cta-widget p { color: #64748b; font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; }

.author-list { display: flex; flex-direction: column; gap: 16px; }
.author-item { display: flex; align-items: center; gap: 12px; }
.author-item .author-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: white; flex-shrink: 0; }
.author-item strong { display: block; font-size: 0.9rem; color: var(--dark); }
.author-item span { font-size: 0.78rem; color: var(--text-muted); }

.newsletter-icon { font-size: 2.5rem; margin-bottom: 16px; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: block; }
.nl-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 14px; display: flex; align-items: center; gap: 6px; justify-content: center; }
.nl-note i { color: #10B981; }

@media (max-width: 992px) {
    .blog-layout { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }
    .featured-post { grid-template-columns: 1fr; }
    .featured-post-img { min-height: 220px; }
    .featured-post-body { padding: 30px; }
    .blog-hero-stats { gap: 24px; }
    .blog-filters-row { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   MOBILE-FIRST RESPONSIVE: TABLET (¤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .container { padding: 0 16px; }

    /* Navbar */
    nav ul { gap: 18px; }
    nav ul li a { font-size: 0.92rem; }

    /* Hero */
    .hero .container { flex-direction: column; text-align: center; gap: 40px; }
    .hero-content { max-width: 100%; }
    .hero-btns { justify-content: center; }
    .hero-social-proof { justify-content: center; }
    .hero-image { width: 100%; }
    .hero h1 { font-size: 2.8rem; }

    /* Services */
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .services-detailed-grid { grid-template-columns: repeat(2, 1fr); }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

    /* Story */
    .story-grid { grid-template-columns: 1fr; gap: 40px; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-wrapper { margin-top: 40px; }

    /* Quote */
    .quote-wrapper { flex-direction: column; }

    /* How it Works */
    .hiw-grid { flex-direction: column; gap: 20px; }
    .hiw-connector { transform: rotate(90deg); }
}

/* ============================================================
   MOBILE-FIRST RESPONSIVE: MOBILE (¤ 768px)
   ============================================================ */
@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.7rem !important; }
    .section-title { font-size: 1.8rem !important; }

    /* Navbar &mdash; hamburger mode */
    .hamburger { display: flex !important; }
    #site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 20px;
        z-index: 999;
    }
    #site-nav.open { display: block; }
    #site-nav ul {
        flex-direction: column;
        gap: 0;
    }
    #site-nav ul li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 1rem;
    }
    .header-actions .btn { display: none; }

    /* Hero */
    .hero { padding: 80px 0 60px; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
    .hero-btns .btn { width: 100%; max-width: 320px; text-align: center; }
    .hero-float-card { display: none; }
    .hero-scroll-hint { display: none; }
    .hero-badge { font-size: 0.8rem; }

    /* Services grid &mdash; single column */
    .services-grid { grid-template-columns: 1fr; }
    .services-detailed-grid { grid-template-columns: 1fr; }
    .service-card { padding: 28px 20px; }

    /* Why Choose Us */
    .wcu-grid { grid-template-columns: 1fr; }
    .wcu-image { display: none; }

    /* Results */
    .results-grid { flex-direction: column; align-items: center; }
    .result-item { min-width: unset; width: 100%; max-width: 280px; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }
    .pricing-card { padding: 30px 20px; }
    .popular { order: -1; }

    /* Blog preview */
    .blog-preview-grid { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    footer { padding: 50px 0 20px; }
    .footer-social { gap: 12px; }
    .copy { font-size: 0.82rem; }

    /* Contact */
    .form-row { flex-direction: column; }
    .contact-info-cards { grid-template-columns: 1fr; }

    /* Page Hero */
    .page-hero { padding: 70px 0 50px; }
    .page-hero h1 { font-size: 2rem; }
    .page-hero p { font-size: 1rem; }

    /* Quote form */
    .quote-wrapper { grid-template-columns: 1fr; }
    .quote-sidebar { display: none; }

    /* Process steps */
    .process-steps { flex-direction: column; gap: 20px; }
    .process-arrow { transform: rotate(90deg); }

    /* Section headers */
    .section-header { text-align: center; }
    .section-sub { font-size: 1rem; }

    /* Floating CTA badges */
    .cta-float-badge { display: none; }
    .final-cta h2 { font-size: 2rem !important; }
    .final-cta-btns { flex-direction: column; align-items: center; }
    .final-cta-btns .btn { width: 100%; max-width: 340px; }
    .cta-trust-row { flex-direction: column; align-items: center; gap: 12px; }
    .cta-sub-note { flex-wrap: wrap; justify-content: center; gap: 10px; }

    /* About page */
    .mission-grid { grid-template-columns: 1fr; }

    /* Trusted brands ticker */
    .brands-ticker-wrapper { overflow: hidden; }
}

/* ============================================================
   MOBILE-FIRST RESPONSIVE: SMALL PHONES (¤ 480px)
   ============================================================ */
@media (max-width: 480px) {
    body { font-size: 0.95rem; }
    .container { padding: 0 12px; }

    /* Logo */
    .logo-img { height: 36px; }

    /* Hero */
    .hero { padding: 70px 0 50px; }
    .hero h1 { font-size: 1.7rem; }
    .hero p { font-size: 0.95rem; }
    .proof-avatars { display: none; }

    /* Buttons */
    .btn { padding: 11px 22px; font-size: 0.9rem; }
    .btn-cta-lg { padding: 13px 24px; font-size: 0.95rem; }

    /* Service cards */
    .service-card { padding: 24px 16px; }
    .service-card i { font-size: 30px; width: 65px; height: 65px; line-height: 65px; }

    /* Results */
    .result-item .number { font-size: 2.5rem; }

    /* Pricing */
    .plan-price .price-num { font-size: 2.2rem; }

    /* Stats */
    .story-stats { grid-template-columns: 1fr; }
    .stat-num { font-size: 2rem; }

    /* Blog */
    .blog-layout { grid-template-columns: 1fr; }
    .blog-hero-stats { flex-direction: column; gap: 16px; }
    .filter-buttons { flex-wrap: wrap; gap: 8px; }
    .filter-btn { font-size: 0.8rem; padding: 6px 14px; }

    /* Footer */
    .footer-logo-img { height: 40px; }
    .footer-social a { font-size: 1rem; }

    /* Form */
    input, select, textarea {
        font-size: 16px !important; /* prevent iOS auto-zoom */
    }

    /* Page hero */
    .page-hero { padding: 60px 0 40px; }
    .page-hero h1 { font-size: 1.7rem; }

    /* How it works */
    .hiw-card { padding: 24px 16px; }
    .hiw-num { font-size: 2rem; }
}

