/* Professional Icon System */

/* Icon Base Styles */
.icon {
    display: inline-block;
    position: relative;
}

/* Ensure all icons have proper sizing */
.icon-boxes,
.icon-cookie,
.icon-medal,
.icon-lock,
.icon-chart,
.icon-checklist,
.icon-envelope,
.icon-pencil,
.icon-email,
.icon-phone,
.icon-location,
.icon-chat,
.icon-target,
.icon-lightbulb,
.icon-handshake,
.icon-star,
.icon-heart,
.icon-rocket,
.icon-question,
.icon-money,
.icon-tools,
.icon-book,
.icon-team,
.icon-person {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search Icon */
.icon-search::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.icon-search::after {
    content: '';
    width: 2px;
    height: 8px;
    background: currentColor;
    position: absolute;
    bottom: -2px;
    right: -2px;
    transform: rotate(45deg);
    transform-origin: bottom;
}

/* Box/Stack Icon */
.icon-boxes {
    width: 60px;
    height: 60px;
    position: relative;
}

.icon-boxes::before,
.icon-boxes::after {
    content: '';
    position: absolute;
    background: #A0522D;
    border: 2px solid #8B4513;
}

.icon-boxes::before {
    width: 40px;
    height: 30px;
    top: 5px;
    left: 10px;
    border-radius: 3px;
}

.icon-boxes::after {
    width: 40px;
    height: 30px;
    top: 20px;
    left: 15px;
    border-radius: 3px;
    background: #CD853F;
    z-index: -1;
}

/* Cookie/SEO Icon */
.icon-cookie {
    width: 60px;
    height: 60px;
    position: relative;
    background: #ffd700;
    border-radius: 50%;
}

.icon-cookie::before,
.icon-cookie::after {
    content: '';
    position: absolute;
    background: #A0522D;
    border-radius: 50%;
}

.icon-cookie::before {
    width: 8px;
    height: 8px;
    top: 15px;
    left: 20px;
}

.icon-cookie::after {
    width: 6px;
    height: 6px;
    bottom: 18px;
    right: 18px;
}

/* Medal Icon */
.icon-medal {
    width: 60px;
    height: 60px;
    position: relative;
}

.icon-medal::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 20px 20px 0 0;
    top: 5px;
    left: 10px;
    border: 2px solid #A0522D;
}

.icon-medal::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #A0522D;
    border-radius: 50%;
    bottom: 0;
    left: 20px;
}

/* Lock Icon */
.icon-lock {
    width: 60px;
    height: 60px;
    position: relative;
}

.icon-lock::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 25px;
    background: #A0522D;
    border-radius: 5px;
    top: 20px;
    left: 15px;
    border: 3px solid #8B4513;
}

.icon-lock::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 15px;
    border: 3px solid #A0522D;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    top: 15px;
    left: 20px;
}

/* Chart Icon */
.icon-chart {
    width: 60px;
    height: 60px;
    position: relative;
    background: #f0f0f0;
    border-radius: 5px;
}

.icon-chart::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 25px;
    background: #A0522D;
    bottom: 10px;
    left: 15px;
    border-radius: 2px 2px 0 0;
}

.icon-chart::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 40px;
    background: #CD853F;
    bottom: 10px;
    left: 28px;
    border-radius: 2px 2px 0 0;
}

/* Checklist Icon */
.icon-checklist {
    width: 60px;
    height: 60px;
    position: relative;
}

.icon-checklist::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 30px;
    border: 3px solid #A0522D;
    border-radius: 3px;
    top: 15px;
    left: 10px;
}

.icon-checklist::after {
    content: '✓';
    position: absolute;
    color: #4caf50;
    font-size: 24px;
    font-weight: bold;
    top: 18px;
    left: 18px;
}

/* Envelope Icon */
.icon-envelope {
    width: 60px;
    height: 60px;
    position: relative;
}

.icon-envelope::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 30px;
    background: #A0522D;
    border-radius: 3px;
    top: 15px;
    left: 10px;
    border: 2px solid #8B4513;
}

.icon-envelope::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 15px solid #CD853F;
    top: 15px;
    left: 10px;
}

/* Pencil Icon */
.icon-pencil {
    width: 60px;
    height: 60px;
    position: relative;
}

.icon-pencil::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 5px;
    background: #A0522D;
    transform: rotate(45deg);
    top: 25px;
    left: 15px;
}

.icon-pencil::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    top: 22px;
    left: 35px;
}

/* Team/People Icon */
.icon-team {
    width: 60px;
    height: 60px;
    position: relative;
}

.icon-team::before,
.icon-team::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #A0522D;
    border-radius: 50%;
    top: 10px;
}

.icon-team::before {
    left: 5px;
}

.icon-team::after {
    left: 30px;
}

/* Email Icon */
.icon-email {
    width: 40px;
    height: 40px;
    position: relative;
}

.icon-email::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 22px;
    background: #A0522D;
    border-radius: 3px;
    top: 5px;
    left: 5px;
    border: 2px solid #8B4513;
}

.icon-email::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 12px solid #CD853F;
    top: 5px;
    left: 5px;
}

/* Phone Icon */
.icon-phone {
    width: 40px;
    height: 40px;
    position: relative;
}

.icon-phone::before {
    content: '';
    position: absolute;
    width: 22px;
    height: 35px;
    background: #A0522D;
    border-radius: 5px;
    top: 2px;
    left: 9px;
    border: 2px solid #8B4513;
}

.icon-phone::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #4caf50;
    border-radius: 50%;
    bottom: 8px;
    left: 16px;
}

/* Location Icon */
.icon-location {
    width: 40px;
    height: 40px;
    position: relative;
}

.icon-location::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid #A0522D;
    top: 5px;
    left: 8px;
}

.icon-location::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #A0522D;
    border-radius: 50%;
    top: 3px;
    left: 11px;
    border: 2px solid #fff;
}

/* Chat Icon */
.icon-chat {
    width: 40px;
    height: 40px;
    position: relative;
}

.icon-chat::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 25px;
    background: #4caf50;
    border-radius: 8px 8px 8px 0;
    top: 5px;
    left: 5px;
}

.icon-chat::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid #4caf50;
    border-top: 8px solid transparent;
    bottom: 5px;
    left: 0;
}

/* Social Media Icons */
.icon-facebook {
    width: 32px;
    height: 32px;
    background: #1877F2;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-facebook::before {
    content: 'f';
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: white;
}

.icon-twitter {
    width: 32px;
    height: 32px;
    background: #1DA1F2;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-twitter::before {
    content: 't';
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 18px;
    color: white;
}

.icon-linkedin {
    width: 32px;
    height: 32px;
    background: #0077B5;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-linkedin::before {
    content: 'in';
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 12px;
    color: white;
    letter-spacing: 0.5px;
}

/* Additional Professional Icons */

/* Target/Mission Icon */
.icon-target {
    width: 60px;
    height: 60px;
    position: relative;
}

.icon-target::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 4px solid #A0522D;
    border-radius: 50%;
    top: 10px;
    left: 10px;
}

.icon-target::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #A0522D;
    border-radius: 50%;
    top: 22px;
    left: 22px;
}

/* Lightbulb Icon */
.icon-lightbulb {
    width: 60px;
    height: 60px;
    position: relative;
}

.icon-lightbulb::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 35px;
    background: #ffd700;
    border-radius: 15px 15px 5px 5px;
    top: 8px;
    left: 15px;
    border: 2px solid #A0522D;
}

.icon-lightbulb::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #A0522D;
    border-radius: 50%;
    bottom: 8px;
    left: 26px;
}

/* Handshake Icon */
.icon-handshake {
    width: 60px;
    height: 60px;
    position: relative;
}

.icon-handshake::before,
.icon-handshake::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 25px;
    background: #A0522D;
    border-radius: 10px 10px 3px 3px;
    top: 20px;
}

.icon-handshake::before {
    left: 8px;
    transform: rotate(-15deg);
}

.icon-handshake::after {
    right: 8px;
    transform: rotate(15deg);
}

/* Star Icon */
.icon-star {
    width: 60px;
    height: 60px;
    position: relative;
}

.icon-star::before {
    content: '★';
    position: absolute;
    font-size: 50px;
    color: #ffd700;
    top: 5px;
    left: 5px;
}

/* Heart Icon */
.icon-heart {
    width: 60px;
    height: 60px;
    position: relative;
}

.icon-heart::before {
    content: '♥';
    position: absolute;
    font-size: 50px;
    color: #e74c3c;
    top: 5px;
    left: 15px;
}

/* Rocket Icon */
.icon-rocket {
    width: 60px;
    height: 60px;
    position: relative;
}

.icon-rocket::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 35px solid #A0522D;
    top: 5px;
    left: 15px;
}

.icon-rocket::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    bottom: 5px;
    left: 21px;
}

/* Question Icon */
.icon-question {
    width: 50px;
    height: 50px;
    position: relative;
}

.icon-question::before {
    content: '?';
    position: absolute;
    font-size: 40px;
    font-weight: bold;
    color: #A0522D;
    top: 5px;
    left: 15px;
}

/* Money/Dollar Icon */
.icon-money {
    width: 50px;
    height: 50px;
    position: relative;
}

.icon-money::before {
    content: '$';
    position: absolute;
    font-size: 40px;
    font-weight: bold;
    color: #4caf50;
    top: 5px;
    left: 15px;
}

/* Tools Icon */
.icon-tools {
    width: 50px;
    height: 50px;
    position: relative;
}

.icon-tools::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 5px;
    background: #A0522D;
    transform: rotate(45deg);
    top: 20px;
    left: 10px;
}

.icon-tools::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 5px;
    background: #CD853F;
    transform: rotate(-45deg);
    top: 20px;
    left: 10px;
}

/* Book Icon */
.icon-book {
    width: 50px;
    height: 50px;
    position: relative;
}

.icon-book::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 40px;
    background: #A0522D;
    border-radius: 2px;
    top: 5px;
    left: 7px;
    border: 2px solid #8B4513;
}

.icon-book::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: #CD853F;
    top: 15px;
    left: 12px;
    box-shadow: 0 8px 0 #CD853F, 0 16px 0 #CD853F;
}

/* Team Member Avatars */
.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #A0522D, #CD853F);
    position: relative;
    border: 4px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.member-1 {
    background: linear-gradient(135deg, #4a90e2, #357abd);
}

.member-2 {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.member-3 {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.member-photo::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    top: 30px;
    left: 40px;
}

.member-photo::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 30px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: none;
    border-radius: 0 0 60px 60px;
    bottom: 25px;
    left: 30px;
}

/* Info Icon Styling */
.info-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mission Icon Styling */
.mission-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Value Icon Styling */
.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FAQ Link Icon Styling */
.faq-link-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Person/Avatar Icon */
.icon-person {
    width: 180px;
    height: 180px;
    position: relative;
    background: linear-gradient(135deg, #A0522D, #CD853F);
    border-radius: 50%;
    margin: 0 auto;
}

.icon-person::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    top: 40px;
    left: 60px;
}

.icon-person::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 50px;
    border: 4px solid rgba(255,255,255,0.3);
    border-top: none;
    border-radius: 0 0 100px 100px;
    bottom: 30px;
    left: 40px;
}

/* Play Button Icon */
.icon-play {
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 6px;
    position: relative;
}

.play-button.icon-play {
    width: auto;
    height: auto;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button.icon-play::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 6px;
}

.play-button.icon-play::after {
    display: none;
}

