/*
Theme Name: newstheme
Description: Custom WordPress Theme based on provided HTML
Version: 1.0
Author: WP Developer
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700&display=swap');

:root {
    --bg-color: #ffffff;
    --surface-color: #f8fafc;
    --header-bg: #001f3f;
    --primary-color: #001f3f;
    --primary-hover: #003366;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #f8fafc;
    --footer-bg: #000000;
    --border-color: #e2e8f0;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
header {
    background: var(--header-bg);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 0.7rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.7rem;
    color: white;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 55px; /* Adjust this to make it larger or smaller */
    width: auto;
    display: block;
}

.logo span {
    color: #38bdf8;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-item {
    position: relative;
    padding: 0.5rem 0;
}

.nav-links > .nav-item > a {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
}

.nav-links > .nav-item > a:hover {
    opacity: 1;
}

/* Submenu Styles */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 0.8rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.nav-item:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    display: block;
    padding: 0.6rem 1.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.submenu li a:hover {
    background: #f1f5f9;
    color: var(--primary-color);
}

.nav-item i {
    font-size: 0.7rem;
    margin-left: 4px;
}

/* Header Buttons */
.header-btns {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: #38bdf8;
    color: #001f3f;
    border: none;
}

.btn-primary:hover {
    background: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: #001f3f;
    border: none;
}

.btn-secondary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.mobile-only-btn {
    display: none !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: white;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

/* Sections Common */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
}

/* Plugins Showcase Redesign */
.plugins-showcase {
    background: #f8fafc;
}

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

.plugin-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 600px) {
    .plugin-card {
        flex-direction: row;
    }
}

.plugin-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: #38bdf8;
}

.plugin-icon {
    min-width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.plugin-card:hover .plugin-icon {
    background: var(--primary-color);
    color: white;
}

.plugin-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.plugin-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.plugin-tags {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.plugin-tags span {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    background: #e2e8f0;
    color: #475569;
    border-radius: 50px;
}

.plugin-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.plugin-link-main {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: underline;
}

.plugin-link-sub {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plugin-link-sub:hover {
    color: var(--primary-hover);
}

/* Services Section Refinement */
.services-section {
    background: #f0f7ff;
    position: relative;
    padding: 120px 0;
}

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

.service-card {
    padding: 4rem 3rem;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateY(100%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.service-card:hover {
    color: white;
    transform: translateY(-12px);
    border-color: transparent;
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* Service Card Color Accents */
.s-blue .service-icon { color: #2563eb; }
.s-purple .service-icon { color: #9333ea; }
.s-cyan .service-icon { color: #0891b2; }
.s-indigo .service-icon { color: #4f46e5; }
.s-pink .service-icon { color: #db2777; }
.s-orange .service-icon { color: #ea580c; }

.service-card:hover .service-icon {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: rotateY(360deg);
}

.service-card h3 {
    margin-bottom: 1.2rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.service-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.service-card:hover p {
    color: rgba(255,255,255,0.9);
}

.service-btn {
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.service-card:hover .service-btn {
    color: white;
}

.service-btn i {
    transition: var(--transition-smooth);
}

.service-btn:hover i {
    transform: translateX(5px);
}

/* About Section */
.about {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.about-bg-accent {
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    width: 400px;
    height: 600px;
    background: #0ea5e9;
    z-index: -1;
    border-radius: 0 50px 50px 0;
    opacity: 0.1;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 6rem;
}

.about-left {
    flex: 1;
}

.phone-mockup {
    background: white;
    padding: 15px;
    border-radius: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    max-width: 350px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.phone-inner {
    background: #f8fafc;
    border-radius: 35px;
    overflow: hidden;
}

.phone-header {
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    padding: 3.5rem 2rem;
    color: white;
    text-align: left;
}

.phone-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-list {
    padding: 1.5rem 0;
}

.feature-list li {
    padding: 0.8rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--text-primary);
    border-bottom: 1px solid #f1f5f9;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: #2563eb;
    font-size: 1.2rem;
}

.about-right {
    flex: 1.2;
}

.about-right h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-right h2 span {
    color: var(--primary-color);
}

.about-right p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-read-more {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1e293b;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-read-more:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
}

/* Responsive Overrides for About */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .about-right h2 {
        font-size: 2.2rem;
    }
}

/* Portfolio / Our Work Section */
.our-work {
    background: #001f3f;
    color: white;
    padding: 100px 0;
}

.work-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    margin-bottom: 80px;
}

.intro-left {
    position: relative;
    padding-top: 100px;
}

.intro-img-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.3;
}

.work-title {
    font-size: 4.5rem;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    font-weight: 300;
}

.work-title span {
    color: #38bdf8;
}

.intro-lead {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #38bdf8;
}

.intro-text {
    font-size: 1.15rem;
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.intro-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-outline {
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background: #38bdf8;
    color: #001f3f;
    border-color: #38bdf8;
}

/* Portfolio Slider */
.portfolio-slider-container {
    position: relative;
    padding: 0 50px;
}

.slider-nav {
    position: absolute;
    top: -50px;
    right: 50px;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-nav span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-nav span:hover {
    background: #38bdf8;
    border-color: #38bdf8;
}

.slider-nav span svg {
    display: block;
    transition: var(--transition-smooth);
}

.Slick-Prev svg {
    transform: rotate(180deg);
}

.portfolio-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.portfolio-slider::-webkit-scrollbar {
    display: none;
}

.portfolio-card {
    min-width: calc(33.333% - 1.35rem);
    position: relative;
    border-radius: 0;
    overflow: hidden;
    scroll-snap-align: start;
}

.portfolio-card .box-img {
    width: 100%;
    height: 400px;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 31, 63, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 2rem;
    text-align: center;
}

.portfolio-card:hover .card-hover {
    opacity: 1;
}

.card-hover h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.btn-learn-more {
    padding: 0.8rem 1.8rem;
    background: white;
    color: #001f3f;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 4px;
}

/* Portfolio Responsive */
@media (max-width: 992px) {
    .portfolio-card {
        min-width: calc(50% - 1rem);
    }
    .work-intro {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .work-title {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .portfolio-card {
        min-width: 100%;
    }
    .portfolio-slider-container {
        padding: 0;
    }
    .slider-nav {
        right: 0;
    }
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 80px 0;
}

.faq-header {
    margin-bottom: 30px;
}

.faq-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.faq-question:hover {
    color: #38bdf8;
}

.faq-icon {
    font-size: 0.8rem;
    color: #64748b;
    transition: var(--transition-smooth);
}

.faq-answer {
    display: none;
    padding: 0 25px 25px 25px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Review Slider */
.slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    background: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 10px;
}

footer {
    background: var(--footer-bg);
    color: white;
    padding: 80px 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    padding-bottom: 60px;
    border-bottom: 1px solid #333;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    color: #38bdf8;
}

.footer-col p {
    color: #94a3b8;
    margin-bottom: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

/* Subscribe Form */
.subscribe-form {
    display: flex;
    margin-top: 1rem;
}

.subscribe-form input {
    padding: 0.8rem 1rem;
    border-radius: 6px 0 0 6px;
    border: none;
    width: 100%;
    background: #1e293b;
    color: white;
}

.subscribe-form button {
    padding: 0.8rem 1.2rem;
    background: #38bdf8;
    border: none;
    color: #001f3f;
    font-weight: 700;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
}

/* Bottom Footer */
.footer-bottom {
    padding: 2.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        padding: 80px 40px;
        transition: 0.4s ease;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
    }

    .nav-item.active .submenu {
        max-height: 500px;
        margin-top: 10px;
    }

    .submenu li a {
        color: rgba(255,255,255,0.8);
        padding: 0.5rem 1rem;
    }

    .header-btns .btn-primary,
    .header-btns .btn-secondary {
        display: none;
    }

    .mobile-only-btn {
        display: block !important;
    }

    .mobile-only-btn .btn-primary {
        display: inline-block !important;
        width: 100%;
        padding: 0.8rem 1rem;
        text-align: center;
        margin-top: 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

.wpforms-container .wpforms-field-label {
    color: #94a3b8 !important;
}

/* Plugins Page Unique Styles */
.plugins-page-hero {
    background: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
}

.plugins-page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.plugins-page-hero h1 span {
    color: #38bdf8;
}

.plugins-page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.plugins-filter-section {
    background: #f8fafc;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
}

.search-box input:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.filter-options {
    display: flex;
    gap: 10px;
}

.filter-btn {
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.sort-box select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
    color: var(--text-primary);
    cursor: pointer;
    outline: none;
}

.plugins-listing-section {
    padding: 80px 0;
    background: #f1f5f9;
}

.plugins-grid-extended {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.plugin-list-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.plugin-list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #38bdf8;
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.badge-popular {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.badge-new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.plugin-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.plugin-icon-large {
    width: 65px;
    height: 65px;
    background: #f0f7ff;
    color: #2563eb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.plugin-title-area h2 {
    font-size: 1.3rem;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.plugin-author {
    font-size: 0.8rem;
    color: #94a3b8;
}

.plugin-card-body {
    flex-grow: 1;
}

.plugin-card-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.plugin-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.stat {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.stat i {
    color: #cbd5e1;
}

.plugin-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 0.85rem;
    color: #94a3b8;
}

.action-btns {
    display: flex;
    gap: 10px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 6px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.page-link:hover, .page-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

@media (max-width: 768px) {
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-options {
        overflow-x: auto;
        padding-bottom: 10px;
    }
}

/* Services Page Unique Styles */
.services-page-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-page-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #f8fafc;
    transform: skewY(-2deg);
    z-index: 1;
}

.services-page-hero .hero-content {
    position: relative;
    z-index: 2;
}

.services-page-hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
}

.services-page-hero h1 span {
    color: #38bdf8;
}

.services-page-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

.detailed-services-section {
    background: #f8fafc;
    padding: 60px 0 100px;
}

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

.detailed-service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.detailed-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.service-card-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.service-icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: #f1f5f9;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

/* Specific colors mirroring the front-page */
.s-blue .service-icon-wrap { color: #2563eb; background: #eff6ff; }
.s-purple .service-icon-wrap { color: #9333ea; background: #faf5ff; }
.s-cyan .service-icon-wrap { color: #0891b2; background: #ecfeff; }
.s-indigo .service-icon-wrap { color: #4f46e5; background: #eef2ff; }
.s-pink .service-icon-wrap { color: #db2777; background: #fdf2f8; }
.s-orange .service-icon-wrap { color: #ea580c; background: #fff7ed; }

.detailed-service-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.service-card-top h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.service-card-content {
    flex-grow: 1;
}

.service-card-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    margin-bottom: 35px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.service-features li i {
    color: #10b981;
    font-size: 0.85rem;
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline-primary i {
    transition: transform 0.3s ease;
}

.btn-outline-primary:hover i {
    transform: translateX(5px);
}

/* How We Work Section */
.process-section {
    padding: 100px 0;
    background: #ffffff;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    margin-top: 50px;
}

.process-step {
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.process-step:hover {
    background: #001f3f;
    color: white;
    transform: translateY(-5px);
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: #e2e8f0;
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
    transition: var(--transition-smooth);
    opacity: 0.5;
}

.process-step:hover .step-number {
    color: rgba(255,255,255,0.1);
}

.step-content {
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.process-step:hover .step-content h3 {
    color: #38bdf8;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    transition: var(--transition-smooth);
}

.process-step:hover .step-content p {
    color: #cbd5e1;
}

/* Services CTA */
.services-cta {
    padding: 80px 0 120px;
    background: #ffffff;
}

.cta-inner {
    background: linear-gradient(135deg, #38bdf8 0%, #0284c7 100%);
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.2);
}

.cta-inner h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-inner p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 15px 35px;
    background: #001f3f;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}

.btn-cta-primary:hover {
    background: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-cta-secondary {
    padding: 15px 35px;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}

.btn-cta-secondary:hover {
    background: white;
    color: #0284c7;
    transform: translateY(-3px);
}

/* Individual Service Detail Page Styles */
.service-detail-hero {
    padding: 120px 0 80px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-detail-hero.s-blue { background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%); }
.service-detail-hero.s-cyan { background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%); }
.service-detail-hero.s-purple { background: linear-gradient(135deg, #7e22ce 0%, #6b21a8 100%); }
.service-detail-hero.s-indigo { background: linear-gradient(135deg, #4338ca 0%, #3730a3 100%); }
.service-detail-hero.s-pink { background: linear-gradient(135deg, #db2777 0%, #be185d 100%); }
.service-detail-hero.s-orange { background: linear-gradient(135deg, #d97706 0%, #b45309 100%); }
.service-detail-hero.s-green { background: linear-gradient(135deg, #059669 0%, #047857 100%); }

.service-icon-large {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.service-detail-hero h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
}

.service-detail-hero h1 span {
    color: #38bdf8;
}

.service-detail-hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

.service-benefits {
    padding: 100px 0;
    background: #ffffff;
}

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

.benefit-card {
    padding: 40px 30px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    background: white;
    border-color: #38bdf8;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card:hover .benefit-icon {
    color: #38bdf8;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.bg-light {
    background: #f1f5f9;
}

.service-content-section {
    padding: 100px 0;
}

.content-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.content-left {
    flex: 1;
}

.content-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-left h2 span {
    color: #38bdf8;
}

.content-left p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.7;
}

.custom-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-primary);
    line-height: 1.6;
}

.custom-list li i {
    color: #38bdf8;
    font-size: 1.2rem;
    margin-top: 5px;
}

.content-right {
    flex: 1;
}

.service-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
    .content-split {
        flex-direction: column;
    }
}

/* Reference Design Service Page Styles */
.ref-service-page {
    background: #ffffff;
    color: #334155;
    font-family: 'Inter', sans-serif;
    padding-bottom: 0;
}

.ref-hero-section {
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.ref-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.ref-hero-content h1 {
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.ref-hero-subtitle {
    font-size: 1.25rem;
    color: #0ea5e9;
    font-weight: 600;
    margin-bottom: 25px;
}

.ref-hero-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.ref-hero-content .btn {
    margin-top: 15px;
    display: inline-block;
    padding: 12px 30px;
    background: #1e293b;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ref-hero-content .btn:hover {
    background: #0f172a;
    transform: translateY(-2px);
}

.ref-hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.ref-text-section {
    padding: 60px 0 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.ref-text-block {
    margin-bottom: 50px;
}

.ref-text-block h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 25px;
}

.ref-text-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

/* Tech Stack */
.ref-tech-stack {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 0 60px;
}

.ref-tech-stack h3 {
    font-size: 1.6rem;
    color: #1e293b;
    margin-bottom: 30px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tech-card {
    border: 1px solid #bae6fd;
    padding: 30px;
    background: white;
    border-top: 3px solid #0ea5e9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.1);
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.tech-card-header i {
    font-size: 1.5rem;
    color: #0ea5e9;
}

.tech-card-header h4 {
    font-size: 1.2rem;
    color: #1e293b;
    margin: 0;
}

.tech-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 12px;
    column-gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-list li {
    font-size: 0.95rem;
    color: #475569;
    display: flex;
    align-items: flex-start;
}

.tech-list li::before {
    content: "•";
    color: #0ea5e9;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: 0;
}

.tech-list li.bold {
    font-weight: 700;
    color: #1e293b;
}

.tech-list li.bold::before {
    content: "—";
    color: #1e293b;
}

/* Specific wide cards */
.tech-card.wide-1 { grid-column: span 1; }
.tech-card.wide-2 { grid-column: span 2; }

@media (max-width: 992px) {
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
    .ref-hero-container { grid-template-columns: 1fr; text-align: center; }
}
@media (max-width: 768px) {
    .tech-grid { grid-template-columns: 1fr; }
    .tech-card.wide-1, .tech-card.wide-2 { grid-column: span 1; }
}

.ref-bottom-text {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0 60px;
}

.ref-bottom-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

/* FAQ Overrides for Reference */
.ref-faq-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 0 80px;
}

.ref-faq-section h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 30px;
}

.ref-faq-container .faq-item {
    border: 1px solid #e2e8f0;
    margin-bottom: 10px;
    border-radius: 4px;
}

.ref-faq-container .faq-question {
    padding: 18px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    background: #ffffff;
}

.ref-faq-container .faq-question:hover {
    background: #f8fafc;
}

.ref-faq-container .faq-answer {
    padding: 0 25px 25px;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* CTA Banner */
.partner-cta-banner {
    background: #0ea5e9;
    padding: 50px 0;
    width: 100%;
}

.partner-cta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partner-cta-text h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.partner-cta-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem;
}

.partner-cta-btns {
    display: flex;
    gap: 15px;
}

.partner-cta-btns .btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 6px;
    background: #1e293b;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.partner-cta-btns .btn:hover {
    background: #0f172a;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .partner-cta-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* Creative Premium Service Page Styles */
.creative-service-page {
    background: #020617; /* Deep tailwind slate-950 */
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    padding-bottom: 0;
    overflow-x: hidden;
    position: relative;
}

/* Atmospheric glowing orbs */
.creative-service-page::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(56,189,248,0.15) 0%, rgba(2,6,23,0) 70%);
    z-index: 0;
    pointer-events: none;
}
.creative-service-page::after {
    content: '';
    position: absolute;
    top: 400px;
    left: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, rgba(2,6,23,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.creative-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.creative-hero {
    padding: 140px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.creative-hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.gradient-text-blue {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-purple {
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.creative-hero-content p {
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Glassmorphism Button */
.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-glass:hover {
    background: rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
    transform: translateY(-3px);
    color: #ffffff;
}

/* Hero Glass Card (Right side) */
.hero-glass-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    position: relative;
}

.hero-glass-card::after {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    border-radius: 24px;
    z-index: -1;
}

/* Bento Grid System */
.bento-section {
    padding: 80px 0;
}

.bento-header {
    margin-bottom: 50px;
    text-align: center;
}

.bento-header h2 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.bento-header p {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 24px;
}

.bento-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 35px;
    transition: all 0.4s ease;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.bento-box:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 30px rgba(56, 189, 248, 0.1);
}

/* Grid Spans */
.span-2-col { grid-column: span 2; }
.span-2-row { grid-row: span 2; }
.span-3-col { grid-column: span 3; }
.span-4-col { grid-column: span 4; }

@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .span-3-col { grid-column: span 2; }
    .span-4-col { grid-column: span 2; }
}
@media (max-width: 768px) {
    .creative-hero-grid { grid-template-columns: 1fr; }
    .bento-grid { grid-template-columns: 1fr; }
    .span-2-col, .span-2-row, .span-3-col, .span-4-col { grid-column: span 1; grid-row: span 1; }
}

.bento-icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.bento-box h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.bento-box p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 1rem;
}

/* Tech List in Bento */
.creative-tech-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    padding: 0; margin: 0;
}

.creative-tech-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.creative-tech-list li i {
    color: #38bdf8;
    font-size: 0.8rem;
}

.creative-tech-list li.bold {
    color: white;
    font-weight: 600;
}

/* Creative FAQ styling */
.creative-faq .faq-item {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    margin-bottom: 15px;
    border-radius: 12px;
}
.creative-faq .faq-question {
    background: transparent;
    color: white;
    font-weight: 500;
}
.creative-faq .faq-question:hover {
    background: rgba(255,255,255,0.02);
}
.creative-faq .faq-answer {
    color: #94a3b8;
}

/* Premium CTA */
.premium-cta {
    margin: 80px 0 100px;
    padding: 80px 40px;
    background: linear-gradient(135deg, #0ea5e9 0%, #4f46e5 100%);
    border-radius: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(14, 165, 233, 0.3);
}

.premium-cta::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.premium-cta h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 2;
}

.premium-cta p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.premium-cta .btn-glass {
    background: rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.3);
    z-index: 2;
}
.premium-cta .btn-glass:hover {
    background: white;
    color: #0ea5e9;
}

/* Premium Portfolio Styles */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.portfolio-filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: #cbd5e1;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-filter-btn:hover,
.portfolio-filter-btn.active {
    background: rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.5);
    color: white;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    transition: all 0.4s ease;
}

@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    transform: scale(1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* For JS filtering */
.portfolio-card.hide {
    display: none;
}
.portfolio-card.show {
    animation: fadeInScale 0.5s ease forwards;
}

@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(2,6,23,0.95) 0%, rgba(2,6,23,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    bottom: 0;
}

.portfolio-category-tag {
    color: #38bdf8;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    transform: translateY(15px);
    transition: transform 0.4s ease 0.1s;
}

.portfolio-project-title {
    color: white;
    font-size: 1.6rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 20px; /* Increased margin */
    transform: translateY(15px);
    transition: transform 0.4s ease 0.15s;
}

.portfolio-overlay .btn-glass-small {
    padding: 8px 20px;
    font-size: 0.9rem;
    width: fit-content;
    border-radius: 30px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    backdrop-filter: blur(5px);
    transform: translateY(15px);
    transition: all 0.4s ease 0.2s, background 0.3s ease;
}

.portfolio-overlay .btn-glass-small:hover {
    background: rgba(38, 189, 248, 0.3);
    border-color: rgba(38, 189, 248, 0.6);
}

.portfolio-card:hover .portfolio-category-tag,
.portfolio-card:hover .portfolio-project-title,
.portfolio-card:hover .btn-glass-small {
    transform: translateY(0);
}

/* Glassmorphism Form Styles */
.glass-form-group {
    margin-bottom: 20px;
    text-align: left;
}
.glass-form-label {
    display: block;
    color: #cbd5e1;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}
.glass-form-input, .glass-form-textarea {
    width: 100%;
    background: rgba(2, 6, 23, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 20px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.glass-form-input:focus, .glass-form-textarea:focus {
    outline: none;
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
    background: rgba(2, 6, 23, 0.6);
}
.glass-form-textarea {
    resize: vertical;
    min-height: 150px;
}

/* About Page Premium Redesign */
.about-hero-full {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}
.about-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(2,6,23,0.9) 0%, rgba(15,23,42,0.6) 100%);
    backdrop-filter: blur(5px);
}
.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.story-split-section {
    padding: 100px 0;
    position: relative;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.story-sticky-col {
    position: sticky;
    top: 100px;
    height: max-content;
}
.story-text-col p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.team-section {
    padding: 80px 0 120px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}
@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

.team-member {
    text-align: center;
    transition: transform 0.4s ease;
}
.team-member:hover {
    transform: translateY(-10px);
}
.team-img-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid rgba(56, 189, 248, 0.4);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}
.team-member:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}
.team-member h4 {
    color: white;
    font-size: 1.3rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 5px;
}
.team-member p {
    color: #38bdf8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Vertical Timeline */
.timeline-section {
    padding: 100px 0;
    background: rgba(15, 23, 42, 0.3);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    background: rgba(56, 189, 248, 0.2);
    transform: translateX(-50%);
}
@media (max-width: 768px) {
    .timeline::before { left: 20px; }
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
    padding-right: 40px;
    left: 0;
}
.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
    padding-right: 0;
}
@media (max-width: 768px) {
    .timeline-item, .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 60px;
        padding-right: 0;
        left: 0;
    }
}
.timeline-dot {
    position: absolute;
    top: 0; right: -10px;
    width: 20px; height: 20px;
    background: #020617;
    border: 4px solid #38bdf8;
    border-radius: 50%;
    z-index: 2;
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}
@media (max-width: 768px) {
    .timeline-dot, .timeline-item:nth-child(even) .timeline-dot { left: 11px; }
}

.timeline-content {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 16px;
}
.timeline-year {
    color: #38bdf8;
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}
.timeline-content h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.timeline-content p {
    color: #94a3b8;
    line-height: 1.6;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

/* =============== GLOBAL RESPONSIVE OVERRIDES =============== */
@media (max-width: 992px) {
    /* Header & Navigation Fixes */
    .mobile-only-btn {
        display: inline-block !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--header-bg);
        flex-direction: column;
        padding: 4rem 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .header-btns > .btn {
        display: none;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 1rem 0;
    }
    
    .nav-item > a {
        font-size: 1.1rem;
    }
    
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255,255,255,0.05);
        display: none;
        margin-top: 10px;
    }
    
    .nav-item.active .submenu {
        display: block;
    }
    
    .submenu li a {
        color: rgba(255,255,255,0.8);
        padding: 10px 15px;
    }
    .submenu li a:hover {
        background: transparent;
        color: #38bdf8;
    }
    
    /* Footer Fixes */
    .footer-main {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    /* Global Section Spacing */
    section, .hero, .about, .premium-cta, .services-section, .our-work, .creative-hero, .bento-section, .story-split-section, .timeline-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}

@media (max-width: 768px) {
    /* Typography Global Overrides */
    h1, .hero-content h1, .creative-hero-content h1, .work-title {
        font-size: 2.5rem !important;
    }
    
    h2, .section-header h2, .about-right h2, .partner-cta-text h2, .premium-cta h2, .bento-header h2 {
        font-size: 2rem !important;
    }
    
    /* Containers & Layouts */
    .container, .creative-container, .partner-cta-container, .ref-faq-section {
        padding: 0 1.5rem;
    }
    
    /* Grid Overrides to 1 Column */
    .plugins-grid, .services-grid, .bento-grid, .portfolio-grid, .team-grid, .about-features-grid {
        grid-template-columns: 1fr !important;
    }
    
    .about-container, .creative-hero-grid, .story-grid, .work-intro {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }
    
    .about-left, .about-right, .intro-left, .intro-right {
        width: 100%;
    }
    
    /* Bento Box specific fixes */
    .span-2-col, .span-3-col, .span-4-col, .span-2-row {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    
    /* Portfolio Slider Adjustments */
    .portfolio-slider-container {
        padding: 0;
    }
    .slider-nav {
        position: static;
        justify-content: center;
        margin-top: 1.5rem;
        display: flex;
    }
}
