/* ==========================================================================
   SOLUTIONS DEDICATED PAGE & DETAIL CARDS (LUXURY GLASSMORPHISM)
   ========================================================================== */

.solutions-page #solutions-catalog {
    padding-bottom: 120px;
}

.solutions-hero-section {
    padding: 140px 0 50px 0;
    text-align: center;
}

.solutions-hero-subtitle {
    color: var(--gray-400);
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    max-width: 780px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

/* Solutions Search & Filter Bar */
.solutions-controls-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.solutions-search-box {
    position: relative;
    width: 100%;
    max-width: 560px;
}

.solutions-search-box i,
.solutions-search-box svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--gray-400);
    pointer-events: none;
}

.solutions-search-input {
    width: 100%;
    padding: 16px 20px 16px 54px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: all 0.3s ease;
}

.solutions-search-input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.3);
    background: rgba(255, 255, 255, 0.07);
}

.solutions-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.solutions-filter-tab {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--gray-300);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.solutions-filter-tab:hover {
    background: rgba(255, 107, 0, 0.12);
    border-color: rgba(255, 107, 0, 0.4);
    color: var(--white);
}

.solutions-filter-tab.active {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-cta) 100%);
    border-color: var(--brand-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

/* Solutions Grid & Cards */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.solution-detail-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.008) 100%);
    -webkit-backdrop-filter: blur(40px) saturate(220%) brightness(1.15);
    backdrop-filter: blur(40px) saturate(220%) brightness(1.15);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 36px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), inset 0 1.5px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
}

.solution-detail-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.45);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65), 0 0 35px rgba(255, 107, 0, 0.2);
}

.sol-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.sol-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-primary);
    opacity: 0.8;
}

.sol-icon-box {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 150px;
    height: 150px;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;

    /* 45-degree angle mask: Sharp at top-right corner, fading 45° towards bottom-left */
    -webkit-mask-image: linear-gradient(225deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.65) 35%, rgba(0, 0, 0, 0) 80%);
    mask-image: linear-gradient(225deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.65) 35%, rgba(0, 0, 0, 0) 80%);

    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.solution-detail-card:hover .sol-icon-box {
    transform: scale(1.12) rotate(-6deg);
}

.sol-icon-box i,
.sol-icon-box svg {
    font-size: 110px;
    width: 110px;
    height: 110px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Brand Primary Orange Icons for all cards */
.sol-icon-box.accent-orange,
.sol-icon-box.accent-blue,
.sol-icon-box.accent-green,
.sol-icon-box.accent-red,
.sol-icon-box.accent-purple,
.sol-icon-box.accent-pink,
.sol-icon-box.accent-cyan,
.sol-icon-box.accent-gold,
.sol-icon-box { 
    color: var(--brand-primary) !important; 
}

/* Quote Form Container max-width 80% on bigger screens */
@media (min-width: 992px) {
    .quote-form,
    #quick-quote-form {
        max-width: 80% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.sol-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.25;
    text-align: left;
}

.sol-desc {
    color: var(--gray-300);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 24px;
    text-align: left;
}

.sol-features-list {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: left;
}

.sol-features-list h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    justify-content: flex-start;
}

.sol-features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.sol-features-list li {
    font-size: 0.88rem;
    color: var(--gray-200);
    line-height: 1.45;
    position: relative;
    padding-left: 20px;
    text-align: left;
}

.sol-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand-primary);
    font-weight: 800;
}

.sol-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    justify-content: flex-start;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 600;
}

.sol-card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sol-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
}

.sol-btn.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-cta) 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.35);
}

.sol-btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.55);
}

.sol-btn.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.sol-btn.btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
}

.sol-btn.btn-sol-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15) !important;
    border-color: rgba(37, 211, 102, 0.45) !important;
    color: #25D366 !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25) !important;
}

.sol-btn.btn-sol-whatsapp:hover i {
    color: #25D366 !important;
}

.solutions-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    display: none;
    margin-top: 40px;
}

.solutions-empty-state i {
    width: 48px;
    height: 48px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

/* ==========================================================================
   QUICK QUOTE FORM SECTION (LUXURY BRAND FORM DESIGN)
   ========================================================================== */

.quick-quote-section {
    padding: 80px 0 120px 0;
}

.quick-quote-section .container {
    max-width: 1400px;
    width: 100%;
}

.quote-card-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.008) 100%);
    -webkit-backdrop-filter: blur(40px) saturate(220%) brightness(1.15);
    backdrop-filter: blur(40px) saturate(220%) brightness(1.15);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 36px;
    padding: 55px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 1.5px 0 rgba(255, 255, 255, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.quote-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.quote-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.25;
}

.quote-orb-1 {
    width: 500px;
    height: 200px;
    background: radial-gradient(circle, var(--brand-primary), transparent 70%);
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
    filter: blur(80px);
}

.quote-orb-2 {
    width: 500px;
    height: 200px;
    background: radial-gradient(circle, var(--brand-cta), transparent 70%);
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.15;
    filter: blur(80px);
}

.quote-card-wrapper .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 36px;
    text-align: center;
}

.quote-card-wrapper .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
    white-space: nowrap;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.quote-subtitle {
    color: var(--gray-400);
    font-size: 0.95rem;
    max-width: 720px;
    margin: 12px auto 0;
    line-height: 1.6;
}

/* Quote Form Grid & Controls */
.quote-form {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

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

.form-group label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand-primary);
    display: block;
    text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    color: var(--white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    display: block;
}

.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23FF6B00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 48px;
    cursor: pointer;
}

.form-group select option {
    background: #0f1015;
    color: #fff;
    padding: 12px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-primary);
    background: rgba(255, 107, 0, 0.06);
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.25);
}

.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.btn-submit-quote {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-cta) 100%);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-submit-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.6);
}

.quote-submit-status {
    font-size: 0.9rem;
    font-weight: 600;
    min-height: 24px;
}

.quote-submit-status.success {
    color: var(--color-success);
}

.quote-submit-status.error {
    color: var(--color-error);
}

/* Solutions Responsive */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .solutions-hero-section {
        padding: 110px 0 30px 0;
    }

    .solution-detail-card {
        padding: 28px 24px;
    }

    .sol-card-actions {
        flex-direction: column;
    }

    .sol-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .quote-card-wrapper {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .quote-card-wrapper .section-title {
        white-space: normal !important;
        font-size: clamp(1.4rem, 4vw, 1.8rem) !important;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
