/* ========== GLOBAL STYLES (From Service Layout) ========== */
.web-design-service-page {
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    /* overflow-x: hidden; REMOVED FOR STICKY HEADER */
}

/* Hide scrollbars */
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

*::-webkit-scrollbar {
    display: none;
}

html,
body {
    scrollbar-width: auto !important;
    -ms-overflow-style: auto !important;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: block !important;
}

.web-design-service-page h1,
.web-design-service-page h2,
.web-design-service-page h3,
.web-design-service-page h4 {
    font-family: 'ClashDisplay-Bold', 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
}

/* ========== HERO SECTION ========== */
.web-hero-section {
    padding: 160px 0 100px;
    background: #000;
    position: relative;
    overflow: hidden;
}

.web-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle 800px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 188, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle 600px at calc(100% - var(--mouse-x, 50%)) calc(100% - var(--mouse-y, 50%)), rgba(255, 215, 0, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 1000px 400px at 50% 50%, rgba(255, 188, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    transition: background 0.5s ease;
    animation: heroGradientMove 15s ease-in-out infinite;
}

@keyframes heroGradientMove {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.web-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 188, 0, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
    pointer-events: none;
    animation: dotMove 20s linear infinite;
}

@keyframes dotMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 40px 40px;
    }
}

.web-hero-title {
    font-size: 100px;
    line-height: 0.95;
    margin-bottom: 50px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -4px;
    font-weight: 900;
}

.web-hero-title .highlight {
    color: #ffd700;
    display: block;
    font-size: 110px;
    letter-spacing: -2px;
}

.web-hero-main-icon {
    font-size: 280px;
    color: #ffd700;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

/* ========== INTRO SECTION ========== */
.web-intro-section {
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.web-intro-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 188, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.web-intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.web-intro-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 100px;
}

.web-intro-column {
    background: rgba(255, 255, 255, 0.02);
    padding: 50px 40px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.web-intro-column:hover {
    background: rgba(255, 188, 0, 0.03);
    border-color: rgba(255, 188, 0, 0.2);
    transform: translateY(-10px);
}

.web-intro-column-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 188, 0, 0.1);
    color: #ffd700;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.web-intro-column h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 800;
    line-height: 1.3;
}

.web-intro-column p {
    font-size: 16px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
}

.web-intro-column ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.web-intro-column li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #eee;
    font-weight: 500;
}

.web-intro-column li i {
    color: #ffd700;
    font-size: 12px;
}

/* ========== BUTTONS ========== */
.web-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: #ffd700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.web-btn-primary:hover {
    background: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 188, 0, 0.3);
    color: #000;
}

.web-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    color: #fff;
    border: 2px solid #333;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.web-btn-secondary:hover {
    border-color: #ffd700;
    color: #ffd700;
    background: rgba(255, 188, 0, 0.05);
}

/* ========== COMMON SECTIONS ========== */
.web-section {
    padding: 90px 0;
    position: relative;
}

.web-section-dark {
    background: #0a0a0a;
}

.web-section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.web-section-title .highlight {
    color: #ffd700;
}

.web-section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #999;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* ========== FEATURES GRID ========== */
.web-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.web-features-grid.web-features-grid-4 {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
}

@media (max-width: 1400px) {
    .web-features-grid.web-features-grid-4 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 991px) {
    .web-features-grid.web-features-grid-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 575px) {
    .web-features-grid.web-features-grid-4 {
        grid-template-columns: 1fr !important;
    }
}

.web-feature-card {
    background: #0a0a0a;
    padding: 40px 20px;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.web-feature-card:hover {
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(255, 188, 0, 0.1);
    transform: translateY(-5px);
}

.web-feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 188, 0, 0.1);
    border: 2px solid rgba(255, 188, 0, 0.3);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.web-feature-icon i {
    font-size: 44px;
    color: #ffd700;
    transition: all 0.3s ease;
}

.web-feature-card:hover .web-feature-icon {
    background: #ffd700;
    border-color: #ffd700;
    transform: scale(1.1) rotate(5deg);
}

.web-feature-card:hover .web-feature-icon i {
    color: #000;
}

.web-feature-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 800;
    font-family: 'ClashDisplay-Bold', sans-serif;
    letter-spacing: -0.5px;
}

.web-feature-card p {
    font-size: 13px;
    color: #888;
    margin: 0;
}

/* ========== PROCESS STEPS ========== */
.web-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-card {
    background: #111;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid #222;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.process-card:hover {
    border-color: #ffd700;
    transform: translateY(-10px);
    background: #151515;
}

.process-card::before {
    content: attr(data-number);
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 188, 0, 0.03);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.process-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 188, 0, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 188, 0, 0.2);
}

.process-card-icon i {
    font-size: 36px;
    color: #ffd700;
}

.process-card h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.process-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 25px;
}

.process-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-card-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #888;
}

.process-card-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ffd700;
}

/* ========== WORK SHOWCASE ========== */
.web-work-showcase {
    padding: 100px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.web-work-title {
    font-size: 80px;
    line-height: 0.95;
    margin-bottom: 35px;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}

.web-work-title .highlight {
    color: #ffd700;
    display: block;
    font-size: 85px;
}

.web-work-swiper {
    padding: 50px 0 150px;
    width: 100%;
}

.web-work-swiper .swiper-slide {
    width: 550px;
    height: 550px;
    filter: brightness(0.4) grayscale(1);
    transition: all 0.8s ease;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #000;
}

.web-work-swiper .swiper-slide-active {
    filter: brightness(1) grayscale(0);
    transform: scale(1.1);
    border-color: rgba(255, 188, 0, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
}

.web-work-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.web-work-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #ffd700;
    color: #000;
    padding: 22px 60px;
    border-radius: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 20px;
}

.web-work-btn:hover {
    background: #ffd700;
    transform: translateY(-5px);
    color: #000;
}

/* ========== INDUSTRY HUB V2 (Redesigned) ========== */
.web-industry-section-v2 {
    padding: 120px 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.industry-hub-wrapper-v2 {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.web-industry-menu-v2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 800px;
    overflow-y: auto;
    padding-right: 10px;
}

/* Custom Scrollbar for Menu */
.web-industry-menu-v2::-webkit-scrollbar {
    width: 4px;
    display: block;
}

.web-industry-menu-v2::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.web-industry-menu-v2::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.industry-tab-btn-v2 {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #888;
    position: relative;
    overflow: hidden;
}

.industry-tab-btn-v2:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.industry-tab-btn-v2.active {
    background: #111;
    border-color: #ffd700;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.tab-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    transition: all 0.3s;
}

.industry-tab-btn-v2.active .tab-icon-box {
    background: #ffd700;
    color: #000;
}

.tab-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tab-title {
    font-weight: 600;
    font-size: 16px;
}

.tab-arrow {
    font-size: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
    color: #ffd700;
}

.industry-tab-btn-v2.active .tab-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* V2 Content Panel */
.industry-content-panel-v2 {
    display: none;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    animation: fadeScale 0.5s ease;
}

.industry-content-panel-v2.active {
    display: block;
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.industry-v2-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.v2-header-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 188, 0, 0.1);
    border: 1px solid rgba(255, 188, 0, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffd700;
}

.industry-v2-header h4 {
    color: #ffd700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 5px 0;
}

.industry-v2-header h3 {
    font-size: 36px;
    color: #fff;
    margin: 0;
    font-weight: 700;
}

.industry-v2-desc {
    font-size: 18px;
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 90%;
}

.industry-features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.industry-feature-item-v2 {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ddd;
    font-weight: 500;
    transition: all 0.3s;
}

.industry-feature-item-v2:hover {
    background: rgba(255, 188, 0, 0.05);
    border-color: rgba(255, 188, 0, 0.2);
    transform: translateX(5px);
}

.industry-feature-item-v2 i {
    color: #ffd700;
}

/* ========== STATS ========== */
.web-stats-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.web-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.web-stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #ffd700;
    font-family: 'Outfit', sans-serif;
    display: block;
}

.web-stat-label {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ========== PRICING & FAQ ========== */
.web-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    align-items: stretch;
}

.web-price-name {
    font-family: 'ClashDisplay-Bold', sans-serif !important;
    font-size: 26px !important;
    font-weight: 900 !important;
    line-height: 0.7 !important;
    /* Extremely tight */
    letter-spacing: -1px !important;
    min-height: auto !important;
    display: block !important;
    color: #fff !important;
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
    text-transform: uppercase !important;
}

.web-price-name span.name-highlight {
    display: block !important;
    color: #ffd700 !important;
    font-size: 28px !important;
    margin-bottom: -4px !important;
    /* Pulls second line up */
    line-height: 0.7 !important;
}

.web-price-card {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
}

.web-price-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 188, 0, 0.4);
    background: rgba(15, 15, 15, 0.6);
}

.web-price-card.featured {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 188, 0, 0.6);
    z-index: 10;
}

.web-price-card.ready-special {
    background: rgba(255, 188, 0, 0.03);
    border: 2px solid #ffd700;
    padding: 60px 35px;
    transform: scale(1.02);
    z-index: 5;
}

.web-price-name {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

.web-price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #ffd700;
    margin-top: 5px;
}

.web-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.web-price-features li {
    padding: 7px 0;
    color: #888;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    gap: 10px;
}

.web-price-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ffd700;
}

.web-price-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
}

.faq-sidebar {
    /* position: sticky; */
    top: 100px;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq-question {
    font-size: 20px;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    color: #999;
    transition: height 0.3s ease;
}

.faq-item.active .faq-answer {
    height: auto;
    padding-top: 15px;
}

.faq-item.active .faq-question {
    color: #ffd700;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .web-hero-title {
        font-size: 80px;
    }

    .web-hero-title .highlight {
        font-size: 90px;
    }

    .web-intro-matrix {
        grid-template-columns: repeat(2, 1fr);
    }

    .web-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .web-hero-title {
        font-size: 60px;
    }

    .web-hero-title .highlight {
        font-size: 64px;
    }

    .web-intro-matrix {
        grid-template-columns: 1fr;
    }

    .web-process-grid {
        grid-template-columns: 1fr;
    }

    .industry-hub-wrapper {
        grid-template-columns: 1fr;
    }

    .industry-hub-wrapper-v2 {
        grid-template-columns: 1fr;
    }

    /* Added for V2 */
    .web-industry-menu {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .web-industry-menu-v2 {
        flexDirection: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    /* Added for V2 */
    .industry-tab-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .industry-tab-btn-v2 {
        flex-shrink: 0;
        white-space: nowrap;
        width: auto;
    }

    /* Added for V2 */
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .web-hero-title {
        font-size: 40px;
    }

    .web-hero-title .highlight {
        font-size: 44px;
    }

    .web-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .web-pricing-grid {
        grid-template-columns: 1fr;
    }

    .web-work-swiper .swiper-slide {
        width: 300px;
        height: 300px;
    }
}

/* ========== REFAC CHANGES (USER REQUEST) ========== */

/* 1. Intro Section Split Layout & Detailed Content */
.web-intro-container-v2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.web-intro-text h2 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.web-intro-desc-detailed p {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.web-intro-features-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.web-intro-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.web-intro-features-list li i {
    font-size: 24px;
    color: #ffd700;
    margin-top: 5px;
    background: rgba(255, 188, 0, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.web-intro-features-list li div {
    display: flex;
    flex-direction: column;
}

.web-intro-features-list li strong {
    color: #fff;
    font-size: 16px;
    margin-bottom: 5px;
    display: block;
}

.web-intro-features-list li span {
    font-size: 13px;
    color: #777;
    line-height: 1.4;
}

/* Image Collage Grid */
.web-intro-image-wrapper {
    position: relative;
    padding: 20px;
}

.web-intro-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.collage-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease;
}

.collage-item:hover {
    transform: scale(1.03);
    border-color: #ffd700;
    z-index: 5;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-item.item-2 {
    transform: translateY(30px);
}

.collage-item.item-3 {
    transform: translateY(-30px);
}

/* Decorative Blobs behind collage */
.collage-deco-1 {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 188, 0, 0.15) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.collage-deco-2 {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 188, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .web-intro-container-v2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .web-intro-features-list {
        grid-template-columns: 1fr;
    }

    .web-intro-collage {
        grid-auto-rows: 200px;
    }

    .collage-item.item-2,
    .collage-item.item-3 {
        transform: none;
    }
}

/* 2. Features Grid (24 cards, 8 cols) */
/* Overriding existing grid for desktop */
@media (min-width: 1600px) {
    .web-features-grid {
        grid-template-columns: repeat(8, 1fr) !important;
        gap: 15px;
    }

    .web-feature-card {
        padding: 25px 15px;
    }

    .web-feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 15px;
    }

    .web-feature-icon i {
        font-size: 18px;
    }

    .web-feature-card h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .web-feature-card p {
        font-size: 11px;
    }
}

/* 3. Stats Animation Styling */
.web-stats-section {
    background: linear-gradient(to right, #0a0a0a, #111, #0a0a0a);
}

.web-stat-item {
    padding: 20px;
    transition: transform 0.3s;
}

.web-stat-item:hover {
    transform: translateY(-5px);
}

.web-stat-number {
    font-variant-numeric: tabular-nums;
}

/* ========== ZIG-ZAG INTRO LAYOUT (APPENDED) ========== */
.web-intro-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.web-intro-row.reverse {
    direction: rtl;
}

.web-intro-row.reverse>* {
    direction: ltr;
}

.web-intro-col-text,
.web-intro-col-img {
    position: relative;
    width: 100%;
}

.intro-main-title {
    font-size: 42px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

.web-intro-long-text p {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
}

.full-width-text-block {
    display: block;
    text-align: left;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.full-width-text-block h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 25px;
}

.intro-img-frame {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    z-index: 1;
}

.intro-img-frame img {
    width: 100%;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.5s;
}

.intro-img-frame:hover img {
    transform: translateY(-10px);
}

.intro-deco-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 100px;
    height: 100px;
    border: 2px solid #ffd700;
    z-index: -1;
    border-radius: 20px;
}

.intro-deco-circle {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 188, 0, 0.2) 0%, transparent 70%);
    z-index: -1;
}

.intro-check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.intro-check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.intro-check-list li i {
    color: #ffd700;
    font-size: 18px;
}

.web-intro-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.detail-box {
    background: #0f0f0f;
    padding: 30px;
    border-radius: 16px;
    border-left: 3px solid #ffd700;
}

.detail-box h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-box h5 i {
    color: #ffd700;
}

.detail-box p {
    font-size: 14px;
    color: #999;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .web-intro-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }

    .web-intro-row.reverse {
        grid-template-columns: 1fr;
    }

    .intro-deco-box,
    .intro-deco-circle {
        display: none;
    }
}

/* ========== SIMPLIFIED INTRO IMAGES ========== */
.intro-img-simple {
    border-radius: 16px;
    overflow: hidden;
}

.intro-img-simple img {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s ease;
}

.intro-img-simple:hover img {
    transform: scale(1.02);
}

/* ========== REDESIGNED PRICING BUTTONS ========== */
.web-price-btn-info,
.web-price-btn-buy,
.web-price-btn-simple {
    display: inline-block;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.web-price-btn-info {
    background: transparent;
    color: #ffd700;
    border-color: rgba(255, 188, 0, 0.3);
}

.web-price-btn-info:hover {
    background: rgba(255, 188, 0, 0.1);
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-2px);
}

.web-price-btn-buy {
    background: #ffd700;
    color: #000;
    border-color: #ffd700;
}

.web-price-btn-buy:hover {
    background: #ffd700;
    border-color: #ffd700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 188, 0, 0.3);
}

.web-price-btn-simple {
    background: rgba(255, 188, 0, 0.1);
    color: #ffd700;
    border-color: rgba(255, 188, 0, 0.2);
    padding: 14px 32px;
    font-size: 15px;
}

.web-price-btn-simple:hover {
    background: rgba(255, 188, 0, 0.15);
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-2px);
}

/* ========== ANIMATED FAQ BACKGROUND ========== */
.web-faq-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.web-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle 600px at 20% 30%, rgba(255, 188, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle 800px at 80% 70%, rgba(255, 188, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
    animation: faqBgMove 20s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes faqBgMove {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 30px) scale(0.95);
    }

    75% {
        transform: translate(20px, 20px) scale(1.02);
    }
}

.web-faq-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(45deg, transparent 48%, rgba(255, 188, 0, 0.02) 49%, rgba(255, 188, 0, 0.02) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 188, 0, 0.02) 49%, rgba(255, 188, 0, 0.02) 51%, transparent 52%);
    background-size: 60px 60px;
    pointer-events: none;
    animation: faqPatternMove 30s linear infinite;
    opacity: 0.3;
}

@keyframes faqPatternMove {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(60px, 60px) rotate(360deg);
    }
}

.faq-grid {
    position: relative;
    z-index: 1;
}

/* ========== SMOOTH SCROLL ========== */
html {
    scroll-behavior: smooth;
}

/* ========== LARGE BUTTON VARIANT ========== */
.web-btn-large {
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
}

.web-btn-large i {
    font-size: 20px;
}

/* ========== SWIPER PAGINATION CUSTOM COLORS ========== */
.web-work-swiper .swiper-pagination-bullet {
    background: rgba(255, 188, 0, 0.3);
    opacity: 1;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
}

.web-work-swiper .swiper-pagination-bullet-active {
    background: #ffd700;
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(255, 188, 0, 0.5);
}

.web-work-swiper .swiper-pagination-bullet:hover {
    background: rgba(255, 188, 0, 0.6);
    transform: scale(1.1);
}

/* ========== PROJECTS BUTTON SPACING ========== */
.web-work-showcase .text-center.mt-5 {
    margin-top: 4rem !important;
}

/* ========== WEB INTRO CONTENT FONT UPDATES ========== */
.web-intro-content h2,
.web-intro-content .intro-main-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.web-intro-content p,
.web-intro-long-text p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.85;
    color: #c0c0c0;
    font-weight: 400;
}

.web-intro-content strong {
    color: #fff;
    font-weight: 600;
}

.web-intro-content h4 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #fff;
}

/* ========== REMOVE INTRO IMAGE DECORATIONS ========== */
.web-intro-content .intro-img-frame,
.web-intro-content .intro-img-simple {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.web-intro-content .intro-img-frame img,
.web-intro-content .intro-img-simple img {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* ========== PRICING LIST LAYOUT (JET STYLE) ========== */
.pricing-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px 35px;
    transition: all 0.3s ease;
}

.pricing-list-item:hover,
.pricing-list-item.featured {
    background: rgba(255, 188, 0, 0.08);
    border-color: rgba(255, 188, 0, 0.3);
}

.pricing-list-item.featured {
    border-color: #ffd700;
    box-shadow: 0 0 30px rgba(255, 188, 0, 0.05);
}

/* Left Side */
.pricing-item-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-header-info .pricing-title {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    margin-bottom: 5px;
}

.pricing-header-info .pricing-desc {
    font-size: 15px;
    color: #aaa;
    margin: 0;
}

.pricing-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.p-badge {
    background: rgba(255, 255, 255, 0.05);
    color: #ccc;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.p-badge.highlight-badge {
    background: rgba(255, 188, 0, 0.1);
    color: #ffd700;
    border: 1px solid rgba(255, 188, 0, 0.2);
}

/* Right Side */
.pricing-item-right {
    display: flex;
    align-items: center;
    gap: 30px;
    min-width: 250px;
    justify-content: flex-end;
}

.pricing-price-box {
    text-align: right;
}

.price-val {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #ffd700;
    font-family: 'Outfit', sans-serif;
}

.price-period {
    display: block;
    font-size: 13px;
    color: #888;
}

.pricing-actions .web-btn-primary.small-btn {
    padding: 12px 25px;
    font-size: 14px;
    border-radius: 8px;
}

.pricing-actions .web-btn-secondary.small-btn {
    padding: 12px 25px;
    font-size: 14px;
    border-radius: 8px;
}

/* Extra Info */
.pricing-extra-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.extra-item {
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 8px;
}

.extra-item i {
    color: #28a745;
}

.extra-item strong {
    color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
    }

    .pricing-item-right {
        width: 100%;
        justify-content: space-between;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 20px;
    }

    .pricing-price-box {
        text-align: left;
    }

    .extra-item {
        width: 100%;
        justify-content: center;
    }
}

/* ========== PRICING COMPARISON TABLE ========== */
.pricing-table-wrapper {
    width: 100%;
    position: relative;
    border-radius: 20px;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* overflow: hidden; Removed because it breaks sticky header */
}

/* Table Scroll Wrapper */
.pricing-table-scroll {
    width: 100%;
    /* On desktop, we want overflow visible so sticky works relative to window.
       On mobile, we need overflow-x auto for scrolling. */
    overflow-x: visible;
}

/* Responsive Scroll for Table */
@media (max-width: 1200px) {
    .pricing-table-scroll {
        overflow-x: auto;
        padding-bottom: 20px;
        /* Space for scrollbar */
    }
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    /* Required for sticky borders sometimes */
    border-spacing: 0;
    min-width: 900px;
    /* Ensure readability on mobile */
}

/* Header Columns */
.comparison-table th {
    padding: 30px 20px;
    background: #0a0a0a;
    /* Match background */
    /* position: sticky; */
    /* top: 90px; */
    /* Offset for site header (approx) */
    z-index: 100;
    /* Ensure above content */
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    vertical-align: top;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    /* Shadow to show depth when stuck */
}

/* Remove border-spacing effect on th borders if needed */
.comparison-table th::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th.feature-col {
    text-align: left;
    width: 25%;
    font-size: 18px;
    left: 0;
    /* Keep first column sticky if needed? No, just top sticky requested. */
    z-index: 101;
    /* Higher than other headers if we did both-way sticky */
    color: #fff;
    padding-left: 40px;
    background: #0f0f0f;
    z-index: 20;
    /* Fixed column z-index higher */
    left: 0;
    /* position: sticky; */
}

.comparison-table th.package-col {
    text-align: center;
    width: 25%;
    position: relative;
}

.comparison-table th.package-col.featured-col {
    background: rgba(255, 188, 0, 0.05);
    border-bottom-color: #ffd700;
}

/* Package Header Info */
.pkg-badge {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%) translateY(-50%);
    background: #ffd700;
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
}

.pkg-name {
    font-size: 18px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.pkg-desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.pkg-price {
    font-size: 24px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.pkg-price span.period {
    font-size: 13px;
    font-weight: 400;
    color: #666;
}

/* Table Body */
.comparison-table td {
    padding: 18px 20px;
    text-align: center;
    color: #ccc;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.comparison-table tr:nth-child(even) td {
    background: rgba(255, 255, 255, 0.015);
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table td.feature-name {
    text-align: left;
    padding-left: 40px;
    font-weight: 500;
    color: #ddd;
    background: #0f0f0f;
    /* Sticky bg same as container */
    /* position: sticky; */
    left: 0;
    z-index: 5;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

/* Feature Highlights */
.comparison-table td .fa-check {
    font-size: 16px;
}

.comparison-table td .fa-times {
    font-size: 16px;
    opacity: 0.3;
}

.text-success {
    color: #ffd700 !important;
}

/* Theme override */
.text-muted {
    color: #666 !important;
}

.highlight-cell {
    background: rgba(255, 188, 0, 0.02) !important;
    font-weight: 600;
    color: #fff;
}

/* Section Headers in Body */
.comparison-table tr.section-row td {
    text-align: left;
    background: #1a1a1a;
    color: #ffd700;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* position: sticky; */
    left: 0;
    /* Keep consistent scroll */
}

/* Responsive */
@media (max-width: 900px) {
    .pricing-table-wrapper {
        border-radius: 12px;
    }

    .comparison-table th.feature-col,
    .comparison-table td.feature-name {
        position: static;
        background: transparent;
        border-right: none;
    }

    /* On mobile, let it scroll freely, no sticky first col as it might block view */
}

/* 6-Column Comparison Table Adjustments */
.comparison-table th.feature-col {
    width: 20%;
    min-width: 200px;
}

.comparison-table th.package-col {
    width: 13.33%;
    /* 80% / 6 columns */
    min-width: 160px;
}

/* Optional Icon (Orange Circle) */
.text-warning {
    color: #ffd700 !important;
    /* Using brand gold instead of generic orange */
    font-size: 10px;
    vertical-align: middle;
}

/* Rule removed to fix sticky header on desktop */

/* Mobile sticky overlap fix */
@media (max-width: 1200px) {

    .comparison-table th.feature-col,
    .comparison-table td.feature-name {
        position: static;
        background: transparent;
        border-right: none;
        width: auto;
    }
}

/* Compact Button for Pricing Table */
.comparison-table .web-btn-primary.small-btn {
    padding: 8px 20px;
    font-size: 13px;
    border-radius: 50px;
    /* Pill shape */
    background: transparent;
    border: 1px solid #ffd700;
    color: #ffd700;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.comparison-table .web-btn-primary.small-btn:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 188, 0, 0.2);
}

/* Ensure sticky header buttons don't take too much space */
.comparison-table th.package-col {
    padding-bottom: 25px;
}

/* Compact Button for Pricing Table - Even Smaller */
.comparison-table .web-btn-primary.small-btn {
    padding: 6px 15px;
    /* Reduced padding further */
    font-size: 11px;
    /* Smaller font size */
    border-radius: 50px;
    background: transparent;
    border: 1px solid #ffd700;
    color: #ffd700;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    /* Prevent wrapping */
}

.comparison-table .web-btn-primary.small-btn:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(255, 188, 0, 0.2);
}

/* Force overflow visible for pricing section to allow sticky headers */
.web-pricing-section {
    overflow: visible !important;
}

/* Ensure container inside pricing section is also visible */
.web-pricing-section .container {
    overflow: visible !important;
}

/* Reinforce table settings for sticky */
.comparison-table {
    border-collapse: separate !important;
    /* Critical for sticky */
    border-spacing: 0;
}

/* Banner Section */
.web-banner-section {
    padding: 60px 0 0;
    /* Add top padding spacing */
    background: #000;
}

.full-banner-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Ensure image is not cropped */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Optional subtle border */
}