/* Build with Confidence Section Styles */

/* Main Section */
.build-confidence-section {
    background: #3A3A3A;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.confidence-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.confidence-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    text-align: center;
}

/* Orange Icon */
.orange-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.orange-icon svg {
    width: 75px;
    height: 81px;
    z-index: 2;
    position: relative;
}

/* Typography */
.confidence-subtitle {
    font-size: 50px;
    font-weight: 900; /* Extra Bold */
    color: #8f8f8f;
    margin: 0;
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    display: block;
    font-style: normal;
}

.confidence-title {
    font-size: 85px;
    font-weight: 900; /* Extra Bold */
    color: #dad3c7;
    margin: 0;
    font-family: 'Montserrat', 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 0.9;
    text-align: center;
    width: 100%;
    display: block;
    font-style: normal;
}

/* Decorative Shapes */
.decorative-shapes {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.decorative-shapes.left-shapes {
    left: 0;
}

.decorative-shapes.right-shapes {
    right: 0;
}

.decorative-shapes svg {
    width: 300px;
    height: auto;
    opacity: 0.6;
}

.decorative-image {
    width: 250px;
    height: auto;
    opacity: 0.6;
    max-width: 100%;
}

/* Responsive Design */

/* Desktop Medium - 1200px and below */
@media (max-width: 1200px) {
    .decorative-shapes.left-shapes {
        left: 0;
    }

    .decorative-shapes.right-shapes {
        right: 0;
    }

    .decorative-shapes svg {
        width: 220px;
    }

    .decorative-image {
        width: 220px;
    }

    .confidence-subtitle {
        font-size: 42px;
    }

    .confidence-title {
        font-size: 72px;
    }
}

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .decorative-shapes.left-shapes {
        left: 0;
    }

    .decorative-shapes.right-shapes {
        right: 0;
    }

    .decorative-shapes svg {
        width: 180px;
    }

    .decorative-image {
        width: 180px;
    }

    .confidence-subtitle {
        font-size: 36px;
    }

    .confidence-title {
        font-size: 60px;
    }

    .build-confidence-section {
        padding: 60px 0;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    .build-confidence-section {
        padding: 50px 0;
    }

    .confidence-subtitle {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .confidence-title {
        font-size: 42px;
        letter-spacing: 3px;
    }

    .decorative-shapes {
        display: block;
    }

    .decorative-shapes svg {
        width: 120px;
    }

    .decorative-image {
        width: 120px;
    }

    .orange-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .orange-icon svg {
        width: 55px;
        height: 60px;
    }

    .confidence-content {
        padding: 0 15px;
    }
}

/* Mobile Small - 480px and below */
@media (max-width: 480px) {
    .build-confidence-section {
        padding: 40px 0;
    }

    .confidence-subtitle {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .confidence-title {
        font-size: 36px;
        letter-spacing: 2px;
        line-height: 1.1;
    }

    .decorative-shapes svg {
        width: 80px;
    }

    .decorative-image {
        width: 80px;
    }

    .orange-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .orange-icon svg {
        width: 45px;
        height: 50px;
    }

    .confidence-content {
        padding: 0 10px;
    }
}
