/* Premium Services CSS */

.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
    color: #0A1E3F;
    font-weight: 900;
    letter-spacing: -1px;
}

.pricing-header p {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.pricing-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(10, 30, 63, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0A1E3F, #00FFFF);
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    background: linear-gradient(145deg, #0A1E3F 0%, #162447 100%);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(10, 30, 63, 0.2);
    border: 1px solid rgba(0, 255, 255, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 255, 255, 0.2);
}

.pricing-card.featured::before {
    background: linear-gradient(90deg, #fadb24, #e6c200);
    opacity: 1;
}

.pricing-card-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.pricing-card-header h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: inherit;
}

.pricing-card:not(.featured) .pricing-card-header h3 {
    color: #0A1E3F;
}

.target-user {
    font-size: 1rem;
    opacity: 0.8;
    font-weight: 500;
}

.pricing-deliverables {
    flex-grow: 1;
}

.pricing-deliverables h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: inherit;
}

.pricing-card:not(.featured) .pricing-deliverables h4 {
    color: #0A1E3F;
}

.pricing-deliverables ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-deliverables li {
    padding: 1rem 0;
    color: inherit;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    font-size: 1.05rem;
}

.pricing-card.featured .pricing-deliverables li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card:not(.featured) .pricing-deliverables li {
    color: #4a5568;
}

.pricing-deliverables li:last-child {
    border-bottom: none;
}

.pricing-deliverables li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #00FFFF;
    margin-right: 1rem;
    font-size: 1.1rem;
    margin-top: 2px;
}

.pricing-card.featured .pricing-deliverables li::before {
    color: #fadb24;
}

.pricing-card:not(.featured) .pricing-deliverables li::before {
    color: #0A1E3F;
}

/* Compare Packages Redesign */
.compare-packages {
    background: #ffffff;
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    margin: 5rem 0;
    overflow-x: auto;
    border: 1px solid rgba(10, 30, 63, 0.05);
}

.compare-packages h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #0A1E3F;
    font-weight: 900;
    margin-bottom: 3rem;
    letter-spacing: -0.5px;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px;
}

.compare-table th {
    background: #f8f9fa;
    color: #0A1E3F;
    padding: 1.5rem;
    text-align: left;
    font-weight: 800;
    font-size: 1.2rem;
    border-bottom: 2px solid #e2e8f0;
}

.compare-table th:first-child {
    border-radius: 16px 0 0 0;
}

.compare-table th:last-child {
    border-radius: 0 16px 0 0;
}

.compare-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    color: #4a5568;
    font-size: 1.05rem;
    transition: background 0.3s ease;
}

.compare-table tr:hover td {
    background: #f8fafc;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table .feature-name {
    font-weight: 700;
    color: #0A1E3F;
}

.compare-table .check {
    color: transparent;
    position: relative;
    user-select: none;
}

.compare-table td.check::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #0A1E3F;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.compare-table td:not(.feature-name) {
    text-align: center;
    font-weight: 600;
}

/* Quote Form and FAQ specific to services */
.quote-form-section {
    background: linear-gradient(135deg, #0A1E3F 0%, #162447 100%);
    padding: 100px 0;
    border-radius: 32px;
    margin: 5rem 0;
    position: relative;
    overflow: hidden;
}

.quote-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.quote-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.quote-form-container h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #0A1E3F;
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.quote-form-container p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.quote-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .quote-form-grid {
        grid-template-columns: 1fr;
    }
}

.quote-form-group.full-width {
    grid-column: 1 / -1;
}

.quote-form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-form-group label {
    display: block;
    color: #0A1E3F;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.quote-form-group input,
.quote-form-group select,
.quote-form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #f8fafc;
}

.quote-form-group input:focus,
.quote-form-group select:focus,
.quote-form-group textarea:focus {
    outline: none;
    border-color: #00FFFF;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.1);
}

.quote-form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.quote-form-submit {
    width: 100%;
    padding: 1.25rem;
    background: #00FFFF;
    color: #0A1E3F;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.quote-form-submit:hover {
    background: #0A1E3F;
    color: #00FFFF;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.25);
}

.faq-section {
    padding: 100px 0;
    background: #ffffff;
}


.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.faq-item {
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

.faq-item.active {
    background: #ffffff;
    border-color: #0A1E3F;
    box-shadow: 0 15px 35px rgba(10, 30, 63, 0.08);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #0A1E3F;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: #00FFFF;
}

.faq-question i {
    color: #0A1E3F;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 1.2rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #00FFFF;
}

.faq-answer {
    padding: 0 2rem;
    color: #4a5568;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    padding: 0 2rem 2rem;
}

.faq-answer p {
    margin: 0;
    font-size: 1.05rem;
}

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

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .quote-form-container {
        padding: 2.5rem 1.5rem;
    }

    .compare-packages {
        padding: 2.5rem 1.5rem;
    }
}

/* ==========================================================================
   PREMIUM "WHAT WE OFFER" SIDE-BY-SIDE SECTION
   ========================================================================== */

.premium-wwo-section {
    padding: 100px 0;
    background-color: var(--soft-gray, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.wwo-header {
    margin-bottom: 4rem;
}

.premium-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #0A1E3F;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.premium-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #00FFFF;
    border-radius: 2px;
}

.premium-subtitle {
    font-size: 1.15rem;
    color: rgba(10, 30, 63, 0.7);
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

.wwo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.wwo-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wwo-feature-card {
    display: flex;
    gap: 1.5rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.wwo-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-left-color: #00FFFF;
}

.wwo-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(10, 30, 63, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A1E3F;
    font-size: 1.4rem;
}

.wwo-text h3 {
    font-size: 1.25rem;
    color: #0A1E3F;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wwo-text p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.wwo-image-col {
    position: relative;
    height: 100%;
}

.wwo-image-wrapper {
    position: sticky;
    top: 100px;
    border-radius: 24px;
    /* overflow: hidden; Removed so the floating card can hang outside */
}

.wwo-main-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wwo-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.floating-icon {
    font-size: 2rem;
    color: #00FFFF;
}

.floating-text strong {
    display: block;
    color: #0A1E3F;
    font-size: 1.1rem;
}

.floating-text span {
    color: #64748B;
    font-size: 0.85rem;
}

.wwo-cta-banner {
    background: linear-gradient(135deg, #0A1E3F 0%, #051024 100%);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.wwo-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
}

.wwo-cta-content h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.wwo-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.wwo-btn {
    background: #00FFFF !important;
    color: #0A1E3F !important;
    font-weight: 700 !important;
    border: none !important;
}

.wwo-btn:hover {
    background: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2) !important;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

    .hidden-mobile {
        display: none;
    }

    .wwo-floating-card {
        bottom: 20px;
        left: 20px;
    }
}

/* ==========================================================================
   PREMIUM "WHAT WE OFFER" SIDE-BY-SIDE SECTION
   ========================================================================== */

.premium-wwo-section {
    padding: 100px 0;
    background-color: var(--soft-gray, #f8f9fa);
    position: relative;
    overflow: hidden;
}

.wwo-header {
    margin-bottom: 4rem;
}

.premium-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #0A1E3F;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.premium-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #00FFFF;
    border-radius: 2px;
}

.premium-subtitle {
    font-size: 1.15rem;
    color: rgba(10, 30, 63, 0.7);
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}

.wwo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.wwo-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wwo-feature-card {
    display: flex;
    gap: 1.5rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.wwo-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-left-color: #00FFFF;
}

.wwo-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(10, 30, 63, 0.05) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A1E3F;
    font-size: 1.4rem;
}

.wwo-text h3 {
    font-size: 1.25rem;
    color: #0A1E3F;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.wwo-text p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.wwo-image-col {
    position: relative;
    height: 100%;
}

.wwo-image-wrapper {
    position: sticky;
    top: 100px;
    border-radius: 24px;
}

.wwo-main-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wwo-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.floating-icon {
    font-size: 2rem;
    color: #00FFFF;
}

.floating-text strong {
    display: block;
    color: #0A1E3F;
    font-size: 1.1rem;
}

.floating-text span {
    color: #64748B;
    font-size: 0.85rem;
}

.wwo-cta-banner {
    background: linear-gradient(135deg, #0A1E3F 0%, #051024 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.wwo-cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
}

.wwo-cta-content h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.wwo-cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.wwo-btn {
    background: #00FFFF !important;
    color: #0A1E3F !important;
    font-weight: 700 !important;
    border: none !important;
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wwo-btn:hover {
    background: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 255, 255, 0.2) !important;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

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

    .hidden-mobile {
        display: none;
    }

    .wwo-floating-card {
        bottom: 20px;
        left: 20px;
    }
}

/* ==========================================================================
   FAQ SECTION - MULTI-COLUMN SMALL CARDS REDESIGN
   ========================================================================== */

.faq-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 1.5rem !important;
    align-items: start !important;
}

.faq-item {
    background: #f8fafc !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
}

.faq-question {
    padding: 1.25rem 1.5rem !important;
    font-size: 1.1rem !important;
}

.faq-answer {
    padding: 0 1.5rem !important;
    color: #475569 !important;
}

.faq-answer p {
    color: #475569 !important;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem !important;
}

/* ==========================================================================
   FAQ SECTION - MULTI-COLUMN SMALL CARDS REDESIGN
   ========================================================================== */

.faq-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 1.5rem !important;
    align-items: start !important;
}

.faq-item {
    background: #f8fafc !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
}

.faq-question {
    padding: 1.25rem 1.5rem !important;
    font-size: 1.1rem !important;
}

.faq-answer {
    padding: 0 1.5rem !important;
    color: #475569 !important;
}

.faq-answer p {
    color: #475569 !important;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem !important;
}

/* ==========================================================================
   PORTFOLIO PREMIUM STYLES
   ========================================================================== */

.portfolio-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item-premium {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-item-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.1);
}

.portfolio-img-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.portfolio-item-premium:hover .portfolio-img-wrapper img {
    transform: scale(1.1);
}

.portfolio-category-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0A1E3F;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-item-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-item-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #0A1E3F;
    font-weight: 700;
}

.portfolio-item-content p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
    flex-grow: 1;
}

.portfolio-link {
    color: #00FFFF;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.portfolio-link i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.portfolio-link:hover {
    color: #0A1E3F;
}

.portfolio-link:hover i {
    transform: translateX(5px);
}

.portfolio-filters-premium {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0A1E3F;
    color: #ffffff;
    border-color: #0A1E3F;
    box-shadow: 0 10px 20px rgba(10, 30, 63, 0.15);
}