/* Base Inner Page Styles */
/* Header styles are now in global.css */

.hero {
    padding: 72px 0 56px;
    text-align: center;
    background: linear-gradient(135deg, #f7f9ff 0%, #eef3ff 40%, #f9fbff 100%);
}

.hero .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e7efff;
    color: var(--blue-700);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
}

.hero h1 {
    margin: 18px 0 10px;
    font-size: clamp(2rem, 2.5vw + 1.3rem, 3.3rem);
    font-weight: 800;
    color: var(--navy-900);
}

.hero p {
    color: var(--slate-600);
    max-width: 640px;
    margin: 0 auto 22px;
}

.section {
    padding: 56px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 32px;
}

.section-title h2 {
    font-size: clamp(1.6rem, 1.5vw + 1.1rem, 2.3rem);
    margin-bottom: 6px;
    color: var(--navy-900);
}

.section-title p {
    color: var(--slate-600);
    max-width: 640px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: var(--radius-page-md);
    padding: 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.grid {
    display: grid;
    gap: 20px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue-600);
    background: #eaf1ff;
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 700;
}











@media (max-width: 760px) {

    .header-cta {
        padding: 8px 14px;
    }

    .hero {
        padding: 54px 0 40px;
    }
}

/* Services Slider Content */
.web-slider-new {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0.5rem 2rem 0.5rem;
    scroll-snap-type: x mandatory;
    margin: 0 -0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.web-slider-new::-webkit-scrollbar {
    height: 6px;
    display: none;
}

.web-card-new {
    background: #FFFFFF;
    border: 1px solid #EAECF0;
    border-radius: 16px;
    padding: 24px;
    min-width: 340px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.web-card-new:hover,
.web-card-new.active {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px -10px rgba(0, 102, 255, 0.15);
    /* Blue-ish shadow */
    border-color: #0066FF;
}

.web-icon-new {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.web-icon-new .material-symbols-outlined {
    font-size: 28px;
}

.icon-solid-blue {
    background-color: #0066FF;
}

.icon-solid-green {
    background-color: #10B981;
}

.icon-solid-indigo {
    background-color: #6366F1;
}

.icon-solid-purple {
    background-color: #8B5CF6;
}

.icon-solid-pink {
    background-color: #EC4899;
}

.icon-solid-orange {
    background-color: #F97316;
}

.icon-solid-cyan {
    background-color: #06B6D4;
}

.web-card-new h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #101828;
    margin-bottom: 0.75rem;
    /* font-family inherited from global.css */
}

.web-card-new p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #475467;
    margin-bottom: 1.5rem;
}

.checklist-new {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.checklist-new li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #344054;
    font-weight: 500;
}

.checklist-new li:last-child {
    margin-bottom: 0;
}

.check-icon-green {
    color: #10B981;
    font-size: 20px;
    font-variation-settings: 'FILL' 1;
}

/* Services Page Specific Styles (Migrated from style.css) */

.bg-light {
    background-color: #F9FAFB;
}

.bg-white {
    background-color: #FFFFFF;
}

.btn-primary-soft {
    background-color: var(--blue-soft);
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-primary-soft:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.section-padding {
    padding: 5rem 0;
}

.overline {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--primary-blue);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.marketing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.marketing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.marketing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.blue-bg {
    background: #1877F2;
}

.pink-bg {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
}

.green-bg {
    background: #25D366;
}

.check {
    font-size: 18px;
    color: #10B981;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.checklist li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.link-blue {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Web Solutions */
.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .flex-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .flex-header .link-arrow {
        align-self: flex-start;
        margin-left: 0;
    }
}

.subtitle-left {
    max-width: 600px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

.web-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.web-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.web-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.web-icon span {
    font-size: 24px;
}

.orange-soft {
    background: #FFF7ED;
    color: #EA580C;
}

.cyan-soft {
    background: #ECFEFF;
    color: #0891B2;
}

.price-tag {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.price-tag span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.price-tag h4 {
    color: var(--text-main);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.price-tag small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Collage Section */
.collage-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.icon-text-block {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.icon-sq {
    min-width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.icon-sq.blue {
    background: var(--primary-blue);
}

.icon-sq.indigo {
    background: var(--indigo-icon);
}

.collage-visuals {
    position: relative;
    height: 400px;
}

.collage-img {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Tall Mobile Image (Left) */
.img-1 {
    width: 200px;
    height: 380px;
    background-image: url('https://placehold.co/400x760/FCA5A5/FFFFFF/png?text=Mobile+App');
    /* Placeholder color to match */
    left: 40px;
    top: 10px;
    z-index: 2;
    background-color: transparent;
    /* Reset */
    color: transparent;
    /* Reset */
}

.img-1::after {
    content: none;
}


/* Top Right (Tablet) */
.img-2 {
    width: 240px;
    height: 160px;
    background-image: url('https://placehold.co/480x320/1e293b/FFFFFF/png?text=Tablet+Dashboard');
    right: 0;
    top: 0;
    background-color: transparent;
    /* Reset */
    color: transparent;
    /* Reset */
}

.img-2::after {
    content: none;
}


/* Bottom Right (Brand Book) */
.img-3 {
    width: 240px;
    height: 180px;
    background-image: url('https://placehold.co/480x360/e2e8f0/475569/png?text=Brand+Identity');
    background-color: #E2E8F0;
    /* Light Gray */
    background-image: none;
    right: 0;
    bottom: 10px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-weight: 600;
    font-size: 1.1rem;
}

.img-3::after {
    content: "Brand Identity";
}


/* Blue CTA Footer */
.cta-blue-section {
    background-color: var(--primary-blue);
    padding: 5rem 0;
    color: var(--white);
}

.cta-blue-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-blue-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-white {
    background: var(--white);
    color: var(--primary-blue);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Web Solutions Slider */
.web-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    margin: 0 -1rem;
    padding: 0 1rem 2rem;
}

/* Hide Scrollbar */
.web-slider::-webkit-scrollbar {
    height: 6px;
}

.web-slider::-webkit-scrollbar-track {
    background: transparent;
}

.web-slider::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 10px;
}

/* Updated Web Card for Slider (Left Aligned) */
.web-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    min-width: 320px;
    height: auto;
    min-height: 380px;
    /* Taller for content */
    flex-shrink: 0;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left align */
    justify-content: flex-start;
    text-align: left;
    transition: var(--transition);
}

.web-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.web-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    /* White icon */
}

.web-icon span {
    font-size: 32px;
}

/* Solid Icon Colors */
.blue-soft {
    background: var(--primary-blue);
    color: var(--white);
}

/* Renaming for simplicity, though keeping class name same as HTML */
.green-soft {
    background: #10B981;
    color: var(--white);
}

.indigo-soft {
    background: #6366F1;
    color: var(--white);
}

.purple-soft {
    background: #8B5CF6;
    color: var(--white);
}

.pink-soft {
    background: #EC4899;
    color: var(--white);
}

.orange-soft {
    background: #F97316;
    color: var(--white);
}

.cyan-soft {
    background: #06B6D4;
    color: var(--white);
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Checklist Style Reuse */
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-main);
}

.checklist li .check {
    color: #10B981;
    /* Green Check */
    font-size: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Center Headers on Mobile */
    .flex-header {
        align-items: center;
        text-align: center;
    }

    .flex-header .link-arrow {
        align-self: center;
        /* Center the button/link too */
        margin-left: 0;
    }

    /* Mobile Slider Fix (Full Width) */
    .web-slider-new {
        margin-left: -2rem;
        margin-right: -2rem;
        padding-left: 2rem;
        padding-right: 2rem;
        width: calc(100% + 4rem);
        scroll-padding-left: 2rem;
        /* Alignment for scroll snap */
    }

    .web-card-new {
        min-width: 280px;
        /* Smaller width for mobile */
        max-width: 85vw;
    }
}

/* Responsive Adjustments for Services Page */
@media (max-width: 1024px) {

    .marketing-grid,
    .web-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hero-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-actions-left {
        justify-content: center;
    }

    .hero-left p {
        margin-left: auto;
        margin-right: auto;
    }

    .collage-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .btn-outline-white {
        border: 1px solid rgba(255, 255, 255, 0.8);
        /* Increased visibility */
        color: var(--white);
    }

    .btn-outline-white:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .collage-visuals {
        order: -1;
        /* Show visual first on tablet/mobile */
        height: 300px;
    }
}

@media (max-width: 600px) {

    .marketing-grid,
    .web-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-hero {
        padding: 8rem 0 4rem;
    }

    .hero-left h1 {
        font-size: 2.5rem;
    }

    /* CTA Mobile Tweaks */
    .cta-blue-section h2 {
        font-size: 1.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    /* Stack Images on Mobile */
    .collage-visuals {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .collage-img {
        position: relative;
        width: 100%;
        height: 220px;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .img-1 {
        height: 300px;
        /* Keep vertical ratio */
        order: 1;
    }

    .img-2 {
        order: 2;
    }

    .img-3 {
        order: 3;
    }
}