.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn--primary {
    background: var(--gradient-hero);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--outline:hover {
    background: var(--primary-light);
    color: var(--primary-hover);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary-hover);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-soft);
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: var(--transition);
}

.card:hover .icon-box {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.trust-indicators {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatars {
    display: flex;
}

.avatars__circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e2e8f0;
    border: 3px solid var(--white);
    margin-left: -15px;
    display: block;
}

.avatars__circle:first-child {
    margin-left: 0;
    background-color: #cbd5e1;
}

.avatars__circle:nth-child(2) {
    background-color: #94a3b8;
}

.avatars__circle:nth-child(3) {
    background-color: #64748b;
}

/* Hero Components */
.hero__content {
    width: 100%;
}

.hero__image {
    position: relative;
    width: 100%;
}

.image-wrapper {
    position: relative;
    z-index: 10;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl, 0 20px 25px -5px rgb(0 0 0 / 0.1));
}

/* Floating Card Component */
.floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 20;
    max-width: 200px;
}

.floating-card__icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

/* Consulting Pills Component */
.consulting-pills {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.consulting-pills__item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: var(--radius-full);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.consulting-pills__number {
    color: var(--primary-soft);
    font-weight: 700;
}

.consulting-pills__item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    border-color: var(--primary);
}

/* Bio Section Components */
.bio-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-md);
}

.bio-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bio-list__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bio-list__icon {
    color: var(--primary);
}

/* Engineering Section */
.engineering-card {
    border-left: 5px solid var(--secondary);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    padding: 40px;
}

.engineering-card__content {
    flex: 1;
    min-width: 300px;
}

.engineering-card__icon {
    flex: 0 0 100px;
    font-size: 5rem;
    text-align: center;
    margin: 0 auto;
}

/* Location and Contact Components */
.location-card {
    padding: 20px;
    border-left: 4px solid var(--primary);
}

.map-container {
    height: 100%;
    min-height: 300px;
    margin: 0;
}

.map-iframe {
    border: 0;
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-address {
    font-style: normal;
}

.contact-phone {
    font-size: 1.5rem;
    color: var(--primary);
}