/* ===== Publicite Media – Complete Stylesheet ===== */
:root {
    --primary: #0A2540;
    --secondary: #00A896;
    --accent: #F9A826;
    --light: #F8F9FA;
    --dark: #1E2A3A;
    --font-heading: 'Jost', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --border-light: #e0e4e8;
    --glass-bg: rgba(255,255,255,0.7);
    --glass-border: rgba(255,255,255,0.3);
    --shadow-sm: 0 10px 30px rgba(0,0,0,0.05);
    --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.15);
    --gradient-primary: linear-gradient(135deg, #0A2540 0%, #1a3a5c 100%);
    --gradient-accent: linear-gradient(135deg, #F9A826 0%, #FF6B35 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: #2d3748;
    background: #fff;
    position: relative;
    line-height: 1.7;
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary);
    letter-spacing: -0.02em;
}
a { text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 50px 0; }
.bg-light { background: var(--light); }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
}
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(10,37,64,0.2);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px rgba(10,37,64,0.3);
}
.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}
.btn-outline {
    border: 2px solid var(--secondary);
    color: var(--secondary);
}
.btn-outline:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

/* Animated Background (Tech Grid) */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 20% 30%, rgba(0,168,150,0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(249,168,38,0.03) 0%, transparent 50%),
                #fafbfc;
}
.animated-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(10,37,64,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,37,64,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: bgScroll 40s linear infinite;
}
@keyframes bgScroll {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}


/* Tech Canvas Background */
#tech-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;           /* above particles (-1), below content (2) */
    pointer-events: none;
    opacity: 1;
}

/* Particles Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.content-wrapper {
    position: relative;
    z-index: 2;
    background: transparent;
}

/* Header */
.main-header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.02);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}
.logo span { color: var(--secondary); }
.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}
.nav-menu a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.2s;
    font-size: 1rem;
}
.nav-menu a:hover { color: var(--secondary); }
.nav-cta {
    background: var(--gradient-primary);
    color: white !important;
    padding: 0.6rem 1.8rem;
    border-radius: 40px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(10,37,64,0.15);
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary);
}

/* Hero */
.hero {
    padding: 120px 0 100px;
    text-align: center;
    position: relative;
}
.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #4a5568;
}
.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Headers */
.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}
.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.5rem;
    height: 2px;
    background: var(--secondary);
}
.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Industries Served - Professional Minimal Style */
.industry-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}
.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s;
}
.industry-item:hover {
    transform: translateY(-3px);
}
.industry-icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(10,37,64,0.06);
    transition: all 0.3s ease;
}
.industry-item:hover .industry-icon {
    color: var(--secondary);
    border-color: rgba(0,168,150,0.2);
    box-shadow: 0 8px 20px rgba(0,168,150,0.08);
}
.industry-item span {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--primary);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}



/* Tech Stack / Logo Marquee */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem 3.5rem;
    margin-top: 2rem;
}
.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.tech-item:hover { opacity: 1; }
.tech-logo {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.02);
}
.tech-item span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.3px;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s;
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.service-icon {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}
.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.service-card p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}
.service-features {
    list-style: none;
}
.service-features li {
    padding: 0.4rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
}
.service-features i { color: var(--secondary); font-size: 1.1rem; }

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
}
.process-step:hover { transform: translateY(-5px); }
.process-num {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0 auto 1.5rem;
}
.process-step h4 { margin-bottom: 0.5rem; }

/* Budget Slider */
.budget-slider-container {
    max-width: 600px;
    margin: 2rem auto;
}
#budgetRange {
    width: 100%;
    accent-color: var(--secondary);
    height: 6px;
}
.service-recommendation {
    background: white;
    padding: 2.5rem;
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    margin-top: 2rem;
    border: 1px solid rgba(0,168,150,0.1);
}
.rec-list {
    list-style: none;
    margin: 1.5rem 0;
}
.rec-list li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
}
.rec-list i { color: var(--secondary); }

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.price-card {
    background: white;
    border-radius: 28px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    position: relative;
}
.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.price-card.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(white, #fffdf8);
}
.featured-badge {
    position: absolute;
    top: -14px;
    right: 30px;
    background: var(--gradient-accent);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
}
.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
}
.plan-best {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 1rem;
}
.plan-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.5rem 0;
}
.plan-price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: normal;
}
.plan-period {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}
.plan-divider {
    height: 1px;
    background: #eee;
    margin: 1.5rem 0;
}
.plan-features {
    list-style: none;
    margin: 1.5rem 0;
}
.plan-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.plan-features i { color: var(--secondary); }
.freebies {
    background: rgba(0,168,150,0.08);
    padding: 1rem;
    border-radius: 40px;
    text-align: center;
    font-weight: 600;
    color: var(--secondary);
    margin: 1.5rem 0;
}
.plan-btn {
    display: block;
    text-align: center;
    margin-top: 2rem;
    padding: 0.75rem;
    border-radius: 30px;
    font-weight: 600;
}
.tax-note {
    text-align: center;
    margin-top: 2rem;
    color: #666;
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, rgba(10,37,64,0.02) 0%, rgba(0,168,150,0.03) 100%);
    padding: 80px 0 60px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
}
.contact-info-card {
    background: white;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,168,150,0.1);
    height: fit-content;
}
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}
.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.contact-detail h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}
.contact-detail p {
    color: #64748b;
    font-size: 1rem;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.social-link {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    transition: all 0.3s;
}
.social-link:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}
.contact-form-card {
    background: white;
    border-radius: 32px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,168,150,0.1);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fafbfc;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(0,168,150,0.1);
    background: white;
}
.submit-btn {
    width: 100%;
    padding: 16px;
    border: none;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s;
}
.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px rgba(10,37,64,0.2);
}
.alert {
    padding: 1rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}
.alert.success {
    background: rgba(0,168,150,0.1);
    color: var(--secondary);
    border: 1px solid rgba(0,168,150,0.2);
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.02);
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.blog-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.blog-card h4 a {
    color: var(--primary);
    transition: color 0.2s;
}
.blog-card h4 a:hover { color: var(--secondary); }
.blog-meta {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.blog-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Single Post Page */
.single-post {
    max-width: 800px;
    margin: 0 auto;
}
.single-post h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.post-meta {
    color: #64748b;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}
.post-content {
    line-height: 1.8;
}
.post-content h2, .post-content h3 {
    margin: 2rem 0 1rem;
}
.post-content p {
    margin-bottom: 1.5rem;
}
.post-content img {
    max-width: 100%;
    border-radius: 16px;
    margin: 1.5rem 0;
}

/* Footer */
.main-footer {
    background: var(--primary);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}
.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}
.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 0.75rem;
}
.footer-col a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}
.footer-col a:hover {
    color: var(--secondary);
}
.footer-col i {
    margin-right: 0.5rem;
    color: var(--secondary);
}
.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Admin Dashboard (admin.css remains separate, but basic override if used) */
.admin-dashboard {
    background: var(--light);
    color: #2d3748;
}
.admin-dashboard .main-header {
    background: white;
}

/* Responsive */
@media (max-width: 1024px) {
    .section-title { font-size: 2.4rem; }
    .hero h1 { font-size: 3.5rem; }
    .contact-grid { gap: 2rem; }
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-bottom: 1px solid var(--border-light);
    }
    .nav-menu.active { display: flex; }
    .mobile-toggle { display: block; }
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.1rem; }
    .section-title { font-size: 2.2rem; }
    .industry-grid { gap: 2rem; }
    .industry-icon { width: 70px; height: 70px; font-size: 2rem; }
    .tech-stack { gap: 1.5rem; }
    .tech-logo { width: 60px; height: 60px; font-size: 1.8rem; }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .contact-info-card, .contact-form-card {
        padding: 2rem 1.5rem;
    }
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    .single-post h1 { font-size: 2.5rem; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 60px 0; }
    .hero { padding: 100px 0 60px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .btn { padding: 12px 24px; text-align: center; }
    .process-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
}

/* Team Cards */
.team-card {
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}